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 ( {children} ); }