File size: 597 Bytes
62c30f9 e56ae2e 62c30f9 c51e9c9 62c30f9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 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>
);
}
|