diff --git a/apps/infoalloggi/src/_app/layout.tsx b/apps/infoalloggi/src/_app/layout.tsx index b978800..cfb33e4 100644 --- a/apps/infoalloggi/src/_app/layout.tsx +++ b/apps/infoalloggi/src/_app/layout.tsx @@ -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 ( - + {children} );