Add root layout with font loading and metadata
Browse files- web/src/app/layout.tsx +23 -0
web/src/app/layout.tsx
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import type { Metadata } from "next";
|
| 2 |
+
import "./globals.css";
|
| 3 |
+
|
| 4 |
+
export const metadata: Metadata = {
|
| 5 |
+
title: "GraphRAG Inference Dashboard — TigerGraph × Claude",
|
| 6 |
+
description:
|
| 7 |
+
"Dual-pipeline GraphRAG system proving graphs make LLM inference faster, cheaper, and smarter. Built with TigerGraph + Claude.",
|
| 8 |
+
icons: { icon: "/favicon.ico" },
|
| 9 |
+
};
|
| 10 |
+
|
| 11 |
+
export default function RootLayout({
|
| 12 |
+
children,
|
| 13 |
+
}: {
|
| 14 |
+
children: React.ReactNode;
|
| 15 |
+
}) {
|
| 16 |
+
return (
|
| 17 |
+
<html lang="en">
|
| 18 |
+
<body className="min-h-screen bg-canvas text-body antialiased">
|
| 19 |
+
{children}
|
| 20 |
+
</body>
|
| 21 |
+
</html>
|
| 22 |
+
);
|
| 23 |
+
}
|