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}