From b39f5f9835a40f3ade1c172f37f49ac09b77fd5e Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 15:46:16 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 28687e8..2b9ef08 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,17 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; -import "../styles/globals.css"; +import { Geist, Geist_Mono } from "next/font/google"; +import "./globals.css"; -const inter = Inter({ subsets: ["latin"] }); +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "Lilat Flowers - Fresh Flower Delivery in Tbilisi", description: "Handcrafted fresh flowers delivered directly to your door in Tbilisi. Perfect for birthdays, anniversaries, weddings, and every special moment."}; + title: "Lilat Flowers | Fresh Flowers Delivery in Tbilisi", description: "Handcrafted fresh flowers delivered directly to your door in Tbilisi. Perfect for birthdays, anniversaries, weddings, and every special moment."}; export default function RootLayout({ children, @@ -14,7 +20,9 @@ export default function RootLayout({ }) { return ( - {children} + + {children} +