From 10a111e7440beb2db47c694529b10d679f52242a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 21:07:02 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 90c30d7..b767c86 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,5 +1,11 @@ import type { Metadata } from "next"; import "./globals.css"; +import { Inter_Tight } from "next/font/google"; + +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +}); export const metadata: Metadata = { title: "Artisan Plombier LPDR - Plombier à Paris 18", description: "Plombier professionnel à Paris 18. Intervention rapide 24h/24, dépannage d'urgence, devis transparent. Appelez-nous au 06 09 76 76 95."}; @@ -10,8 +16,8 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - {children} + + {children}