|
- import type { Metadata } from "next";
- import { GeistSans } from "geist/font/sans";
- import { GeistMono } from "geist/font/mono";
- import "./globals.css";
-
- export const metadata: Metadata = {
- title: "Captive Portal",
- description: "Welcome",
- };
-
- export default function RootLayout({
- children,
- }: Readonly<{
- children: React.ReactNode;
- }>) {
- return (
- <html
- lang="it"
- className={`${GeistSans.variable} ${GeistMono.variable} h-full antialiased`}
- >
- <body className="min-h-full flex flex-col">{children}</body>
- </html>
- );
- }
|