muthuk1's picture
Branding: replace Claude with TigerGraph logo and remove Claude references
c51e9c9
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "GraphRAG — Graphs Make LLM Inference Faster, Cheaper, Smarter",
description:
"Dual-pipeline GraphRAG system proving graphs make LLM inference faster, cheaper, and smarter. Built with TigerGraph for the GraphRAG Inference Hackathon.",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className="min-h-screen bg-canvas text-body antialiased">
{children}
</body>
</html>
);
}