test
This commit is contained in:
parent
5d3b0c1c14
commit
4229d44c2f
1 changed files with 10 additions and 5 deletions
|
|
@ -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>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue