This commit is contained in:
Marco Pedone 2025-11-28 10:56:06 +01:00
parent 5d3b0c1c14
commit 4229d44c2f

View file

@ -1,7 +1,9 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import "~/styles/globals.css"; import "~/styles/globals.css";
import "react-day-picker/dist/style.css";
import { inter } from "~/utils/fonts";
export const metadata: Metadata = { export const metadata: Metadata = {
description: "Welcome to Next.js", description: "Trova casa ora con Infoalloggi",
icons: { icons: {
apple: { apple: {
sizes: "180x180", sizes: "180x180",
@ -20,19 +22,22 @@ export const metadata: Metadata = {
}, },
], ],
}, },
manifest: "/site.webmanifest", manifest: "/site.webmanifest",
title: "Home", title: "Infoalloggi.it",
}; };
export default function RootLayout({ export default function RootLayout({
// Layouts must accept a children prop.
// This will be populated with nested layouts or pages
children, children,
}: { }: {
children: React.ReactNode; children: React.ReactNode;
}) { }) {
return ( return (
<html lang="en"> <html
className={`${inter.variable} scrollbar-default font-sans`}
lang="en"
suppressHydrationWarning
>
<body>{children}</body> <body>{children}</body>
</html> </html>
); );