From 4229d44c2f795735c742438adfe20a6d7e1d5573 Mon Sep 17 00:00:00 2001 From: Marco Pedone Date: Fri, 28 Nov 2025 10:56:06 +0100 Subject: [PATCH] test --- apps/infoalloggi/src/_app/layout.tsx | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) 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} );