SEPSIS_ICU_MIMIC / frontend /src /app /layout.tsx
Expanic
Update code
1eb43b0
Raw
History Blame Contribute Delete
689 Bytes
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({
subsets: ["latin"],
variable: "--font-inter",
});
export const metadata: Metadata = {
title: "SepsisGuard - AI-Powered Sepsis Prediction",
description: "Advanced early warning system for sepsis prediction using GRU-D Neural Network",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<body
className={`${inter.variable} font-sans antialiased min-h-screen bg-slate-950`}
>
{children}
</body>
</html>
);
}