Spaces:
Running
Running
| import type { Metadata } from "next"; | |
| import { Inter } from "next/font/google"; | |
| import "./globals.css"; | |
| const inter = Inter({ | |
| subsets: ["latin"], | |
| display: "swap", | |
| weight: ["400", "500"], | |
| }); | |
| export const metadata: Metadata = { | |
| title: "HyperView", | |
| description: "Dataset visualization with hyperbolic embeddings", | |
| }; | |
| export default function RootLayout({ | |
| children, | |
| }: Readonly<{ | |
| children: React.ReactNode; | |
| }>) { | |
| return ( | |
| <html lang="en" className="h-full"> | |
| <body className={`${inter.className} antialiased h-full`}>{children}</body> | |
| </html> | |
| ); | |
| } | |