diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index acc8858..0236bc2 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 { 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."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 96a707e..d98f6f8 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -46,7 +46,7 @@ export default function LandingPage() {
description="Handcrafted bakery goods made with love and the finest ingredients. From artisanal sourdough to delicate pastries, every bite tells a story of tradition and passion."
background={{ variant: "radial-gradient" }}
buttons={[
- { text: "Order Today", href: "#contact" },
+ { text: "Get Fresh Treats Now", href: "#contact" },
{ text: "Learn Our Story", href: "#about" },
]}
layoutOrder="default"
@@ -62,7 +62,8 @@ export default function LandingPage() {
);
-}
\ No newline at end of file
+}