7 Commits

Author SHA1 Message Date
e500bc1cb3 Update src/app/page.tsx 2026-03-08 23:03:07 +00:00
abb45705a2 Update src/app/layout.tsx 2026-03-08 23:03:07 +00:00
a0c0373271 Merge version_2 into main
Merge version_2 into main
2026-03-08 22:58:26 +00:00
0901bb0296 Update src/app/page.tsx 2026-03-08 22:58:22 +00:00
f713a57341 Update src/app/layout.tsx 2026-03-08 22:58:22 +00:00
33e2822739 Merge version_1 into main
Merge version_1 into main
2026-03-08 22:51:17 +00:00
8963603e9c Merge version_1 into main
Merge version_1 into main
2026-03-08 22:50:10 +00:00
2 changed files with 17 additions and 39 deletions

View File

@@ -1,51 +1,28 @@
import type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Drâa Boulangerie & Pâtisserie - Fresh Pastries in Ouarzazate", description: "Traditional Moroccan bakery in Ouarzazate. Fresh croissants, pastillas, and honey cookies baked daily. Call 06 54 81 86 83 or visit us for authentic pastries.", keywords: "bakery Ouarzazate, Moroccan pastries, croissants, pastilla, honey cookies, fresh baked goods", metadataBase: new URL("https://draaboulangerie.com"),
alternates: {
canonical: "https://draaboulangerie.com"},
openGraph: {
title: "Drâa Boulangerie & Pâtisserie - Fresh Moroccan Pastries", description: "Traditional Moroccan bakery offering fresh croissants, pastillas, and authentic sweets daily.", url: "https://draaboulangerie.com", siteName: "Drâa Boulangerie & Pâtisserie", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/view-delicious-baked-bread-pastry-shop_23-2150379551.jpg", alt: "Fresh Moroccan pastries"},
],
},
twitter: {
card: "summary_large_image", title: "Drâa Boulangerie & Pâtisserie", description: "Fresh Moroccan pastries and baked goods in Ouarzazate", images: ["http://img.b2bpic.net/free-photo/view-delicious-baked-bread-pastry-shop_23-2150379551.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Drâa Boulangerie & Pâtisserie - Fresh Moroccan Pastries", description: "Fresh Bread & Delicious Pastries in Ouarzazate. Traditional Moroccan sweets and freshly baked pastries made daily."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1413,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -43,8 +43,9 @@ export default function LandingPage() {
<HeroSplitKpi
title="Fresh Bread & Delicious Pastries in Ouarzazate"
description="Traditional Moroccan sweets and freshly baked pastries made daily. From aromatic croissants to authentic sablés, we craft every item with quality ingredients and time-honored recipes."
tag="Local Bakery Since 2010"
tag="Fresh Daily • Made In-House"
tagIcon={Sparkles}
tagAnimation="slide-up"
background={{ variant: "animated-grid" }}
kpis={[
{ value: "5.0★", label: "Customer Rating" },
@@ -83,11 +84,12 @@ export default function LandingPage() {
<div id="about" data-section="about">
<TextAbout
tag="A Local Favorite Bakery"
tag="Family-Owned Since 2010"
title="Drâa Boulangerie & Pâtisserie is a beloved bakery in Ouarzazate known for its fresh croissants, traditional Moroccan cookies, and delicious pastries. Our team prepares baked goods every day using high-quality ingredients and traditional recipes. Perfect for breakfast, desserts, and sweet treats to share with family and friends."
useInvertedBackground={true}
buttons={[
{ text: "Order Now", href: "tel:+212654818683" }
{ text: "Order Now", href: "tel:+212654818683" },
{ text: "See Our Story", href: "#about" }
]}
/>
</div>