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