diff --git a/src/app/layout.tsx b/src/app/layout.tsx index be870e6..d686d36 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1411 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Archivo } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geistSans = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Donut Lovers - Fresh Handcrafted Donuts in Haltom City", description: "Discover delicious, handcrafted donuts at Donut Lovers in Haltom City, TX. Fresh daily with unique flavors. Visit 2225 Haltom Rd today!", keywords: "donuts, Haltom City, bakery, fresh donuts, pastries, handcrafted", openGraph: { - title: "Donut Lovers - Fresh Handcrafted Donuts", description: "Artisan donuts baked fresh daily. Experience unique flavors at Donut Lovers in Haltom City, TX.", siteName: "Donut Lovers", type: "website"}, - twitter: { - card: "summary_large_image", title: "Donut Lovers - Fresh Handcrafted Donuts", description: "Visit Donut Lovers for the best fresh donuts in Haltom City, TX."}, -}; + title: "Donut Lovers", description: "Handcrafted donuts made with love in Haltom City"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -