4 Commits

Author SHA1 Message Date
70ba828dfe Merge version_2 into main
Merge version_2 into main
2026-03-10 08:34:29 +00:00
ff7c37af36 Update src/app/page.tsx 2026-03-10 08:34:25 +00:00
ed2978234c Update src/app/layout.tsx 2026-03-10 08:34:25 +00:00
d161149fca Merge version_1 into main
Merge version_1 into main
2026-03-10 08:32:52 +00:00
2 changed files with 10 additions and 43 deletions

View File

@@ -1,55 +1,23 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Inter_Tight } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { Poppins } from "next/font/google";
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 interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
const poppins = Poppins({
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "Artisan Bakery - Fresh Handcrafted Baked Goods", description: "Discover freshly baked pastries, breads, and artisan goods. Family-owned bakery with 25+ years of excellence. Order online today.", keywords: "bakery, pastries, croissants, sourdough, fresh bread, artisan baking, handcrafted, pastry shop", openGraph: {
title: "Artisan Bakery - Premium Handcrafted Baked Goods", description: "Experience the warmth of handcrafted pastries and artisan breads made with the finest ingredients.", type: "website", siteName: "Artisan Bakery", images: [
{
url: "http://img.b2bpic.net/free-photo/side-view-croissant-glass-jar-jam-with-leaves-cutting-board-wooden-background_141793-130310.jpg", alt: "fresh bakery display pastries bread"},
],
},
twitter: {
card: "summary_large_image", title: "Artisan Bakery - Fresh Baked Daily", description: "Handcrafted pastries and breads made with love and organic ingredients.", images: ["http://img.b2bpic.net/free-photo/side-view-croissant-glass-jar-jam-with-leaves-cutting-board-wooden-background_141793-130310.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Artisan Bakery - Fresh Baked Goodness", description: "Experience the warmth of handcrafted pastries and artisan breads made with the finest ingredients"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={poppins.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -61,7 +61,7 @@ export default function LandingPage() {
}
]}
buttons={[
{ text: "Order Now", href: "#contact" },
{ text: "Order Fresh Pastries Today", href: "#contact" },
{ text: "Learn More", href: "#about" }
]}
imageSrc="http://img.b2bpic.net/free-photo/side-view-croissant-glass-jar-jam-with-leaves-cutting-board-wooden-background_141793-130310.jpg"