Skip to content

Commit d0a36d1

Browse files
author
Jenifer Tabita Ciuciu-Kiss
committed
add Panel page
1 parent 4ec32de commit d0a36d1

File tree

4 files changed

+49
-0
lines changed

4 files changed

+49
-0
lines changed

src/App.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ import NatureNavigator from "./components/blogs/NatureNavigator"
3030
import Community from "./components/blogs/Community";
3131
import { Visa } from "./components/attending/visa";
3232
import KeynoteSpeakers from "./components/program/KeynoteSpeakers";
33+
import Panel from "./components/program/Panel";
3334
import Workshops from "./components/program/Workshops";
3435
import ProgramChallenges from "./components/program/ProgramChallenges";
3536
import CodeOfConduct from "./components/attending/CodeOfConduct";
@@ -80,6 +81,7 @@ export default function HeroComponent() {
8081
<Route path="/program/keynotespeakers" element={<KeynoteSpeakers />} />
8182
<Route path="/program/workshops" element={<Workshops />} />
8283
<Route path="/program/challenges" element={<ProgramChallenges />} />
84+
<Route path="/program/panel" element={<Panel />} />
8385

8486
{/* Attendings */}
8587
<Route path="/attending/visa" element={<Visa />} />

src/components/navbar.jsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,10 @@ export const NavBar = () => {
193193
Challenges
194194
<div className="bg-[#E30022] w-0 group-hover:w-full"></div>
195195
</Link>
196+
<Link to="/program/panel" className="block px-4 py-2" style={{ color: '#e94607' }} onClick={() => dropdownMenuClicked()}>
197+
Panel
198+
<div className="bg-[#E30022] w-0 group-hover:w-full"></div>
199+
</Link>
196200
</div>
197201
)}
198202
</div>

src/components/program/Panel.jsx

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
import React from "react";
2+
3+
import guha from "./guha.png";
4+
5+
export const Panel = () => {
6+
return (
7+
<>
8+
<div className="mt-[74px] px-4 pt-2 bg-white flex items-center justify-center">
9+
</div>
10+
<br />
11+
<div className="flex justify-start items-start flex-col pt-10 pb-0 lg:pt-16 lg:pb-4 mb-4 lg:my-6 lg:h-auto lg:px-32 px-8 overflow-visible">
12+
<p style={{ color: '#e94607' }} className="text-3xl font-bold mb-4 lg:mx-10 sm:mx-2 tracking-wide text-center">ISWC2025 Panel
13+
</p>
14+
<div className="text-md lg:text-lg font-[300] lg:mx-10 sm:mx-2">
15+
16+
<h2 style={{ color: '#e94607' }} className="text-xl font-semibold mt-6">Reimagining Knowledge: The Future and Relevance of Symbolic Representation in the Age of LLMs</h2>
17+
18+
<p>As large language models (LLMs) continue to reshape the landscape of artificial intelligence, the role of symbolic representation, once central to knowledge modeling and reasoning, faces renewed scrutiny and exciting possibilities.</p>
19+
<p>This panel, "Reimagining Knowledge: The Future and Relevance of Symbolic Representation in the Age of LLMs," brings together leading thinkers at the intersection of machine learning, knowledge engineering, and AI in the broader sense to explore the evolving relationship between symbolic and machine-learning paradigms. Through a multidisciplinary dialogue, panelists will examine whether symbolic structures remain essential for interpretability, reasoning, and alignment in modern AI systems or if they are being eclipsed by the impressive but opaque capabilities of LLMs.</p>
20+
21+
<h2 style={{ color: '#e94607' }} className="text-xl font-semibold mt-6">Panel Chair</h2>
22+
23+
<p><a href="https://en.wikipedia.org/wiki/Ramanathan_V._Guha" target="_blank" style={{'color': '#e94607'}}>Ramanathan V. Guha</a></p>
24+
25+
<img src={guha} alt="Ramanathan V. Guha" className="rounded-xl my-4 h-[300px]" />
26+
27+
<p><b>Ramanathan V. Guha</b> recently joined Microsoft as CVP and Technical Fellow. Earlier, he spent time at <a href="https://en.wikipedia.org/wiki/Google" target="_blank" style={{'color': '#e94607'}}>Google</a>, <a href="https://www.research.ibm.com/labs/almaden/" target="_blank" style={{'color': '#e94607'}}>IBM Almaden</a>, <a href="https://en.wikipedia.org/wiki/Netscape" target="_blank" style={{'color': '#e94607'}}>Netscape</a>, <a href="https://en.wikipedia.org/wiki/Apple_Advanced_Technology_Group" target="_blank" style={{'color': '#e94607'}}>Apple ATG</a>, and <a href="https://en.wikipedia.org/wiki/Microelectronics_and_Computer_Technology_Corporation" target="_blank" style={{'color': '#e94607'}}>MCC</a>. He also started multiple companies, including Epinions and Alpiri.</p>
28+
29+
<p>Guha is the creator of widely used web standards such as RSS, RDF, and Schema.org. His research interests include Knowledge Representation, Structured data on the Web, Trust networks, and Web Monetization.</p>
30+
31+
<p>At Microsoft, he recently conceived and developed <a href="https://news.microsoft.com/source/features/company-news/introducing-nlweb-bringing-conversational-interfaces-directly-to-the-web/" target="_blank" style={{'color': '#e94607'}}>NLWeb</a>.</p>
32+
33+
<h2 style={{ color: '#e94607' }} className="text-xl font-semibold mt-6">Panelists:</h2>
34+
35+
<p>To be announced.</p>
36+
37+
</div>
38+
</div>
39+
</>
40+
);
41+
}
42+
43+
export default Panel;

src/components/program/guha.png

30.7 KB
Loading

0 commit comments

Comments
 (0)