diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index acc8858..21e3f41 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,57 +1,36 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Archivo } 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 archivo = Archivo({
- variable: "--font-archivo", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Lucky Treats | Artisanal Bakery & Fresh Pastries", description: "Handcrafted bakery goods made with premium ingredients. Fresh sourdough, pastries, custom cakes, and more. Order online for delivery today.", keywords: "artisanal bakery, sourdough bread, fresh pastries, custom cakes, cupcakes, cookies, local bakery", metadataBase: new URL("https://luckytreatsbakery.com"),
- alternates: {
- canonical: "https://luckytreatsbakery.com"},
- openGraph: {
- title: "Lucky Treats | Handcrafted Bakery", description: "Experience authentic artisanal baked goods made fresh daily with the finest ingredients.", url: "https://luckytreatsbakery.com", siteName: "Lucky Treats", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/donut-tray_23-2147985155.jpg", alt: "Lucky Treats Bakery - Fresh Artisanal Goods"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Lucky Treats | Artisanal Bakery", description: "Handcrafted baked goods & pastries made fresh daily", images: ["http://img.b2bpic.net/free-photo/donut-tray_23-2147985155.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Lucky Treats - Artisanal Bakery", description: "Handcrafted bakery goods made with love and the finest ingredients. From artisanal sourdough to delicate pastries."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-