diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9e68a12..8ee3f09 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1443 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } 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 inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Pixie Pies - Award-Winning Cheesecakes in Avilla, Indiana", - description: "Locally loved bakery specializing in handcrafted cheesecakes, pies, and custom desserts. Order for pickup or delivery. (260) 242-8645.", - keywords: "cheesecake Avilla Indiana, bakery near me, custom desserts, wedding catering, homemade pies, local bakery", - metadataBase: new URL("https://pixiepies.local"), - alternates: { - canonical: "https://pixiepies.local", - }, - openGraph: { - title: "Pixie Pies - Award-Winning Cheesecakes in Avilla", - description: "Handcrafted cheesecakes and homemade desserts made fresh for any occasion. Order online or call today.", - url: "https://pixiepies.local", - siteName: "Pixie Pies", - images: [ - { - url: "http://img.b2bpic.net/free-photo/top-view-delicious-cake-concept_23-2148761730.jpg", - alt: "Fresh homemade cheesecake from Pixie Pies", - }, - ], - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Pixie Pies - Award-Winning Cheesecakes", - description: "Handcrafted cheesecakes and desserts in Avilla, Indiana.", - images: [ - "http://img.b2bpic.net/free-photo/top-view-delicious-cake-concept_23-2148761730.jpg", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Pixie Pies - Homemade Cheesecakes & Desserts in Avilla, Indiana", description: "Award-winning handcrafted cheesecakes and desserts made fresh to order. Perfect for special occasions, weddings, and events."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -