morozovdd's picture
feat: add HyperView app for space
23680f2
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>
);
}