muthuk1 commited on
Commit
c51e9c9
·
1 Parent(s): 64c3622

Branding: replace Claude with TigerGraph logo and remove Claude references

Browse files

- Add real TigerGraph tiger logo (tg-logo.webp) to public/
- Add icon.svg to src/app/ for browser tab favicon (Next.js auto-picks it)
- Navbar: replace SVG circle with actual TigerGraph tiger logo
- Footer: same logo swap; remove Anthropic Claude link; fix copyright line
- HeroSection: badge 'TigerGraph x Claude' -> 'Powered by TigerGraph';
code window model string 'claude-sonnet-4' -> 'gemini-2.5-flash'
- layout.tsx: remove Claude from meta description; drop favicon.ico reference

web/public/tg-logo.webp ADDED
web/src/app/icon.svg ADDED
web/src/app/layout.tsx CHANGED
@@ -4,8 +4,7 @@ import "./globals.css";
4
  export const metadata: Metadata = {
5
  title: "GraphRAG — Graphs Make LLM Inference Faster, Cheaper, Smarter",
6
  description:
7
- "Dual-pipeline GraphRAG system proving graphs make LLM inference faster, cheaper, and smarter. Built with TigerGraph + Claude for the GraphRAG Inference Hackathon.",
8
- icons: { icon: "/favicon.ico" },
9
  };
10
 
11
  export default function RootLayout({
 
4
  export const metadata: Metadata = {
5
  title: "GraphRAG — Graphs Make LLM Inference Faster, Cheaper, Smarter",
6
  description:
7
+ "Dual-pipeline GraphRAG system proving graphs make LLM inference faster, cheaper, and smarter. Built with TigerGraph for the GraphRAG Inference Hackathon.",
 
8
  };
9
 
10
  export default function RootLayout({
web/src/components/Footer.tsx CHANGED
@@ -9,10 +9,7 @@ export function Footer() {
9
  <div className="grid grid-cols-1 md:grid-cols-4 gap-12 mb-16">
10
  <div>
11
  <div className="flex items-center gap-2 mb-4">
12
- <svg width="28" height="28" viewBox="0 0 32 32" fill="none">
13
- <circle cx="16" cy="16" r="14" stroke="#FF6B00" strokeWidth="2.5" />
14
- <circle cx="16" cy="16" r="5" fill="#FF6B00" />
15
- </svg>
16
  <span className="title-lg" style={{ color: "var(--color-on-dark)" }}>
17
  Graph<span style={{ color: "#FF6B00" }}>RAG</span>
18
  </span>
@@ -49,9 +46,8 @@ export function Footer() {
49
  {[
50
  { label: "GraphRAG Paper", href: "https://arxiv.org/abs/2404.16130" },
51
  { label: "LightRAG Paper", href: "https://arxiv.org/abs/2410.05779" },
52
- { label: "HotpotQA Dataset", href: "https://hotpotqa.github.io/" },
53
  { label: "TigerGraph Cloud", href: "https://tgcloud.io" },
54
- { label: "Anthropic Claude", href: "https://anthropic.com" },
55
  ].map((link) => (
56
  <a key={link.label} href={link.href} target="_blank" rel="noopener noreferrer"
57
  className="body-sm block mb-2 hover:underline no-underline" style={{ color: "#FF6B00" }}>
@@ -63,7 +59,7 @@ export function Footer() {
63
  <div style={{ borderTop: "1px solid rgba(255,255,255,0.08)", paddingTop: "24px" }}
64
  className="flex flex-col md:flex-row justify-between items-center gap-4">
65
  <span className="body-sm" style={{ color: "var(--color-on-dark-soft)" }}>
66
- © 2025 GraphRAG Inference Hackathon · TigerGraph × Claude
67
  </span>
68
  <div className="flex items-center gap-3">
69
  <span className="badge" style={{ background: "var(--color-surface-dark-elev)", color: "var(--color-on-dark-soft)", fontSize: "0.6875rem" }}>
 
9
  <div className="grid grid-cols-1 md:grid-cols-4 gap-12 mb-16">
10
  <div>
11
  <div className="flex items-center gap-2 mb-4">
12
+ <img src="/tg-logo.webp" alt="TigerGraph" width={28} height={28} style={{ objectFit: "contain" }} />
 
 
 
13
  <span className="title-lg" style={{ color: "var(--color-on-dark)" }}>
14
  Graph<span style={{ color: "#FF6B00" }}>RAG</span>
15
  </span>
 
46
  {[
47
  { label: "GraphRAG Paper", href: "https://arxiv.org/abs/2404.16130" },
48
  { label: "LightRAG Paper", href: "https://arxiv.org/abs/2410.05779" },
 
49
  { label: "TigerGraph Cloud", href: "https://tgcloud.io" },
50
+ { label: "Wikipedia Science", href: "https://en.wikipedia.org" },
51
  ].map((link) => (
52
  <a key={link.label} href={link.href} target="_blank" rel="noopener noreferrer"
53
  className="body-sm block mb-2 hover:underline no-underline" style={{ color: "#FF6B00" }}>
 
59
  <div style={{ borderTop: "1px solid rgba(255,255,255,0.08)", paddingTop: "24px" }}
60
  className="flex flex-col md:flex-row justify-between items-center gap-4">
61
  <span className="body-sm" style={{ color: "var(--color-on-dark-soft)" }}>
62
+ © 2025 GraphRAG Inference Hackathon · Built with TigerGraph
63
  </span>
64
  <div className="flex items-center gap-3">
65
  <span className="badge" style={{ background: "var(--color-surface-dark-elev)", color: "var(--color-on-dark-soft)", fontSize: "0.6875rem" }}>
web/src/components/Navbar.tsx CHANGED
@@ -23,11 +23,7 @@ export function Navbar() {
23
  {/* Logo */}
24
  <Link href="/" className="flex items-center gap-3 no-underline">
25
  <div className="relative">
26
- <svg width="32" height="32" viewBox="0 0 32 32" fill="none">
27
- <circle cx="16" cy="16" r="14" stroke="#FF6B00" strokeWidth="2.5" />
28
- <circle cx="16" cy="16" r="5" fill="#FF6B00" />
29
- <path d="M16 2L16 30M2 16L30 16M5.5 5.5L26.5 26.5M26.5 5.5L5.5 26.5" stroke="#FF6B00" strokeWidth="1" strokeLinecap="round" opacity="0.4" />
30
- </svg>
31
  <div className="absolute -top-0.5 -right-0.5 w-2.5 h-2.5 rounded-full bg-success" style={{ boxShadow: '0 0 6px rgba(93,184,114,0.6)' }} />
32
  </div>
33
  <div>
 
23
  {/* Logo */}
24
  <Link href="/" className="flex items-center gap-3 no-underline">
25
  <div className="relative">
26
+ <img src="/tg-logo.webp" alt="TigerGraph" width={32} height={32} style={{ objectFit: "contain" }} />
 
 
 
 
27
  <div className="absolute -top-0.5 -right-0.5 w-2.5 h-2.5 rounded-full bg-success" style={{ boxShadow: '0 0 6px rgba(93,184,114,0.6)' }} />
28
  </div>
29
  <div>
web/src/components/home/HeroSection.tsx CHANGED
@@ -25,7 +25,7 @@ export function HeroSection() {
25
  <div>
26
  <div className="flex items-center gap-3 mb-8 animate-fade-in-up">
27
  <span className="badge-glow" style={{ fontSize: "0.75rem" }}>🏆 Hackathon 2025</span>
28
- <span className="badge-outline" style={{ fontSize: "0.75rem" }}>TigerGraph × Claude</span>
29
  </div>
30
 
31
  <h1 className="display-hero mb-8 animate-fade-in-up delay-100">
@@ -89,7 +89,7 @@ export function HeroSection() {
89
  <span style={{ color: "#6c6a64" }}>{" = "}</span>
90
  <span style={{ color: "#e8a55a" }}>UniversalLLM</span>
91
  <span style={{ color: "#6c6a64" }}>(</span>
92
- <span style={{ color: "#cc785c" }}>&quot;claude-sonnet-4&quot;</span>
93
  <span style={{ color: "#6c6a64" }}>)</span>
94
  </div>
95
  <div style={{ paddingLeft: "24px" }}>
 
25
  <div>
26
  <div className="flex items-center gap-3 mb-8 animate-fade-in-up">
27
  <span className="badge-glow" style={{ fontSize: "0.75rem" }}>🏆 Hackathon 2025</span>
28
+ <span className="badge-outline" style={{ fontSize: "0.75rem" }}>Powered by TigerGraph</span>
29
  </div>
30
 
31
  <h1 className="display-hero mb-8 animate-fade-in-up delay-100">
 
89
  <span style={{ color: "#6c6a64" }}>{" = "}</span>
90
  <span style={{ color: "#e8a55a" }}>UniversalLLM</span>
91
  <span style={{ color: "#6c6a64" }}>(</span>
92
+ <span style={{ color: "#cc785c" }}>&quot;gemini-2.5-flash&quot;</span>
93
  <span style={{ color: "#6c6a64" }}>)</span>
94
  </div>
95
  <div style={{ paddingLeft: "24px" }}>