diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fa8bf94..f414429 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Wiggly Baker | Artisan Baked Goods & Fresh Pastries", description: "Discover freshly baked artisan breads, pastries, and treats at Wiggly Baker. Premium ingredients, traditional techniques, and custom orders available.", keywords: "artisan bakery, fresh pastries, sourdough, croissants, custom cakes, baked goods", openGraph: { - title: "Wiggly Baker | Artisan Baked Goods & Fresh Pastries", description: "Discover freshly baked artisan breads, pastries, and treats at Wiggly Baker. Premium ingredients, traditional techniques, and custom orders available.", siteName: "Wiggly Baker", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/top-view-recipe-book-still-life-concept_23-2149056054.jpg", alt: "Fresh artisan breads and pastries at Wiggly Baker"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Wiggly Baker | Artisan Baked Goods & Fresh Pastries", description: "Discover freshly baked artisan breads, pastries, and treats at Wiggly Baker.", images: ["http://img.b2bpic.net/free-photo/top-view-recipe-book-still-life-concept_23-2149056054.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Wiggly Baker - Artisan Bakery", description: "Discover freshly baked artisan breads, pastries, and treats crafted with passion."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -