|
|
|
@@ -1,20 +1,11 @@ |
|
|
|
import type { Metadata } from "next"; |
|
|
|
import { Geist, Geist_Mono } from "next/font/google"; |
|
|
|
import { GeistSans } from "geist/font/sans"; |
|
|
|
import { GeistMono } from "geist/font/mono"; |
|
|
|
import "./globals.css"; |
|
|
|
|
|
|
|
const geistSans = Geist({ |
|
|
|
variable: "--font-geist-sans", |
|
|
|
subsets: ["latin"], |
|
|
|
}); |
|
|
|
|
|
|
|
const geistMono = Geist_Mono({ |
|
|
|
variable: "--font-geist-mono", |
|
|
|
subsets: ["latin"], |
|
|
|
}); |
|
|
|
|
|
|
|
export const metadata: Metadata = { |
|
|
|
title: "Create Next App", |
|
|
|
description: "Generated by create next app", |
|
|
|
title: "Captive Portal", |
|
|
|
description: "Welcome", |
|
|
|
}; |
|
|
|
|
|
|
|
export default function RootLayout({ |
|
|
|
@@ -24,8 +15,8 @@ export default function RootLayout({ |
|
|
|
}>) { |
|
|
|
return ( |
|
|
|
<html |
|
|
|
lang="en" |
|
|
|
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`} |
|
|
|
lang="it" |
|
|
|
className={`${GeistSans.variable} ${GeistMono.variable} h-full antialiased`} |
|
|
|
> |
|
|
|
<body className="min-h-full flex flex-col">{children}</body> |
|
|
|
</html> |
|
|
|
|