Spaces:
Running
Running
File size: 578 Bytes
23680f2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
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>
);
}
|