MindCheck / mindcheck-web /src /app /layout.tsx
MindCheck Bot
Deploy Next.js and Flask backend
8d3e440
Raw
History Blame Contribute Delete
768 Bytes
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "MindCheck",
description: "Understand your mental health",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<head>
<link
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL,GRAD,opsz@100..700,0..1,-50..200,20..48&display=swap"
rel="stylesheet"
/>
</head>
<body className={`${inter.className} min-h-screen flex flex-col font-body-md text-body-md`}>
{children}
</body>
</html>
);
}