File size: 881 Bytes
f4102c2 | 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 28 29 30 31 32 33 34 35 36 37 38 | import type { Metadata } from "next";
import { Inter, JetBrains_Mono } from "next/font/google";
import { ThemeRoot } from "@/components/providers";
import "./globals.css";
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const mono = JetBrains_Mono({
variable: "--font-jetbrains-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "BeatSense — Cardiovascular Risk Intelligence",
description:
"Clinical workstation for cardiovascular risk assessment powered by ML.",
icons: { icon: "/logu1.png" },
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html suppressHydrationWarning>
<body
className={`${inter.variable} ${mono.variable} min-h-screen antialiased`}
>
<ThemeRoot>{children}</ThemeRoot>
</body>
</html>
);
}
|