From 3092a2a600f69a6a35e687b7f26dd72ac17c4da0 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 15:03:50 +0000 Subject: [PATCH 1/2] 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 327fd4b..91aa73b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,7 +1,13 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; + +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "Giina Flowers", description: "Handcrafted floral arrangements delivered with love and passion"}; + title: "Giina Flowers", description: "Handcrafted floral arrangements delivered with love and passion" +}; export default function RootLayout({ children, @@ -10,7 +16,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}