diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6e18316..11b52e0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,17 +1,15 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import { Lato } from "next/font/google"; import "./globals.css"; -const geist = Geist({ - variable: "--font-geist-sans", subsets: ["latin"], -}); - -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", subsets: ["latin"], +const lato = Lato({ + variable: "--font-lato", subsets: ["latin"], + weight: ["100", "300", "400", "700", "900"], }); export const metadata: Metadata = { - title: "Imperial Treehouse | Handcrafted Bouquets & Personalized Gifts in Dubai", description: "Custom-made floral designs and meaningful gifts for every occasion. Locally crafted in Al Quoz with delivery and pickup available across Dubai."}; + title: "Imperial Treehouse | Handcrafted Bouquets & Personalized Gifts in Dubai", description: "Custom-made floral designs and meaningful gifts for every occasion. Locally crafted in Al Quoz with delivery and pickup available across Dubai." +}; export default function RootLayout({ children, @@ -20,7 +18,7 @@ export default function RootLayout({ }) { return ( -
+ {children}