diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4a122e8..28687e8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "../styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Lilat Flowers | Fresh Flower Delivery in Tbilisi", description: "Fresh flowers delivered same-day in Tbilisi. Handcrafted bouquets for birthdays, weddings, anniversaries. Call +995 577 05 42 83 or order online today.", keywords: "flower shop Tbilisi, flower delivery Tbilisi, roses delivery, same day flowers, local florist, wedding flowers, anniversary flowers", metadataBase: new URL("https://lilatflowers.ge"), - alternates: { - canonical: "https://lilatflowers.ge"}, - openGraph: { - title: "Lilat Flowers | Fresh Handcrafted Bouquets", description: "Discover beautiful, fresh flowers delivered same-day across Tbilisi. Perfect for every occasion.", url: "https://lilatflowers.ge", siteName: "Lilat Flowers", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/pink-roses-with-green-stems_23-2147761211.jpg", alt: "beautiful fresh pink roses bouquet arrangement"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Lilat Flowers | Fresh Flower Delivery", description: "Same-day flower delivery in Tbilisi. Handcrafted bouquets for any occasion.", images: ["http://img.b2bpic.net/free-photo/pink-roses-with-green-stems_23-2147761211.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + 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."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}