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