Merge version_1 into main #2

Merged
bender merged 5 commits from version_1 into main 2026-03-09 11:13:49 +00:00
5 changed files with 115 additions and 331 deletions

View File

@@ -11,8 +11,7 @@ import Link from "next/link";
export default function AboutPage() {
const footerColumns = [
{
title: "Shop",
items: [
title: "Shop", items: [
{ label: "Moroccan Rugs", href: "/" },
{ label: "Handmade Textiles", href: "/" },
{ label: "Traditional Crafts", href: "/" },
@@ -20,8 +19,7 @@ export default function AboutPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Story", href: "/about" },
{ label: "Gallery", href: "/" },
@@ -29,8 +27,7 @@ export default function AboutPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Phone: +212 5 24 42 64 10", href: "tel:+212524426410" },
{ label: "WhatsApp", href: "https://wa.me/212524426410" },
{ label: "Visit Us", href: "https://maps.google.com/?q=44+Souk+Semmarine+Marrakech+40000" },
@@ -46,7 +43,7 @@ export default function AboutPage() {
borderRadius="soft"
contentWidth="small"
sizing="largeSmallSizeLargeTitles"
background="grid"
background="circleGradient"
cardStyle="inset"
primaryButtonStyle="double-inset"
secondaryButtonStyle="radial-glow"
@@ -89,13 +86,7 @@ export default function AboutPage() {
description="We work directly with master weavers and craftspeople throughout Morocco to bring you genuine, handmade pieces."
tag="Artisan Collective"
names={[
"Berber Weaver Collective",
"Traditional Textile Guild",
"Marrakech Master Artisans",
"Atlas Mountain Craftspeople",
"Heritage Preservation Society",
"Souk Semmarine Cooperative",
]}
"Berber Weaver Collective", "Traditional Textile Guild", "Marrakech Master Artisans", "Atlas Mountain Craftspeople", "Heritage Preservation Society", "Souk Semmarine Cooperative"]}
textboxLayout="default"
useInvertedBackground={true}
speed={40}
@@ -108,7 +99,7 @@ export default function AboutPage() {
<ContactText
text="Experience the magic of Moroccan craftsmanship in person. Visit Chateau des Souks in Souk Semmarine, or reach out to arrange a custom consultation for your specific needs."
animationType="reveal-blur"
background={{ variant: "grid" }}
background={{ variant: "plain" }}
useInvertedBackground={false}
buttons={[
{ text: "Get Directions", href: "https://maps.google.com/?q=44+Souk+Semmarine+Marrakech+40000" },
@@ -120,7 +111,7 @@ export default function AboutPage() {
{/* Footer */}
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/street-ait-ben-haddou-village_268835-7026.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/street-ait-ben-haddou-village_268835-7026.jpg"
imageAlt="Marrakech Souk Semmarine"
columns={footerColumns}
logoText="Chateau des Souks"

View File

@@ -21,7 +21,7 @@ export default function ContactPage() {
borderRadius="soft"
contentWidth="small"
sizing="largeSmallSizeLargeTitles"
background="grid"
background="circleGradient"
cardStyle="inset"
primaryButtonStyle="double-inset"
secondaryButtonStyle="radial-glow"
@@ -41,18 +41,13 @@ export default function ContactPage() {
text="Ready to bring Moroccan authenticity into your home? Contact us today for inquiries, custom orders, or to plan your visit to our shop in the Marrakech Medina."
animationType="entrance-slide"
background={{
variant: "grid",
}}
variant: "plain"}}
useInvertedBackground={false}
buttons={[
{
text: "Call Now: +212 5 24 42 64 10",
href: "tel:+212524426410",
},
text: "Call Now: +212 5 24 42 64 10", href: "tel:+212524426410"},
{
text: "Chat on WhatsApp",
href: "https://wa.me/212524426410",
},
text: "Chat on WhatsApp", href: "https://wa.me/212524426410"},
]}
/>
</div>
@@ -147,70 +142,43 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/street-ait-ben-haddou-village_268835-7026.jpg?_wi=6"
imageSrc="http://img.b2bpic.net/free-photo/street-ait-ben-haddou-village_268835-7026.jpg"
imageAlt="Marrakech Souk Semmarine"
columns={[
{
title: "Shop",
items: [
title: "Shop", items: [
{
label: "Moroccan Rugs",
href: "/",
},
label: "Moroccan Rugs", href: "/"},
{
label: "Handmade Textiles",
href: "/",
},
label: "Handmade Textiles", href: "/"},
{
label: "Traditional Crafts",
href: "/",
},
label: "Traditional Crafts", href: "/"},
{
label: "Gift Ideas",
href: "/",
},
label: "Gift Ideas", href: "/"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/",
},
label: "About Us", href: "/"},
{
label: "Our Story",
href: "/",
},
label: "Our Story", href: "/"},
{
label: "Gallery",
href: "/",
},
label: "Gallery", href: "/"},
{
label: "Reviews",
href: "/reviews",
},
label: "Reviews", href: "/reviews"},
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{
label: "Phone: +212 5 24 42 64 10",
href: "tel:+212524426410",
},
label: "Phone: +212 5 24 42 64 10", href: "tel:+212524426410"},
{
label: "WhatsApp",
href: "https://wa.me/212524426410",
},
label: "WhatsApp", href: "https://wa.me/212524426410"},
{
label: "Visit Us",
href: "https://maps.google.com/?q=44+Souk+Semmarine+Marrakech+40000",
},
label: "Visit Us", href: "https://maps.google.com/?q=44+Souk+Semmarine+Marrakech+40000"},
{
label: "Contact Form",
href: "/contact",
},
label: "Contact Form", href: "/contact"},
],
},
]}

View File

@@ -15,7 +15,7 @@ export default function GalleryPage() {
borderRadius="soft"
contentWidth="small"
sizing="largeSmallSizeLargeTitles"
background="grid"
background="circleGradient"
cardStyle="inset"
primaryButtonStyle="double-inset"
secondaryButtonStyle="radial-glow"
@@ -40,31 +40,21 @@ export default function GalleryPage() {
<HeroCentered
title="Explore Our Gallery of Authentic Moroccan Craftsmanship"
description="Discover the artistry, heritage, and tradition behind every piece in our collection. From traditional weaving techniques to contemporary designs, each item tells a story of Moroccan culture and craftsmanship."
background={{ variant: "grid" }}
background={{ variant: "plain" }}
avatars={[
{
src: "http://img.b2bpic.net/free-photo/colorful-handmade-material-texture_23-2148383660.jpg",
alt: "Moroccan textile detail",
},
src: "http://img.b2bpic.net/free-photo/colorful-handmade-material-texture_23-2148383660.jpg", alt: "Moroccan textile detail"},
{
src: "http://img.b2bpic.net/free-photo/high-angle-boho-style-pillows-couch_23-2149637994.jpg",
alt: "Moroccan artisan crafts",
},
src: "http://img.b2bpic.net/free-photo/high-angle-boho-style-pillows-couch_23-2149637994.jpg", alt: "Moroccan artisan crafts"},
{
src: "http://img.b2bpic.net/free-photo/lamps-arab-restaurant_23-2147794380.jpg",
alt: "Moroccan shop interior",
},
src: "http://img.b2bpic.net/free-photo/lamps-arab-restaurant_23-2147794380.jpg", alt: "Moroccan shop interior"},
]}
avatarText="Handcrafted by Master Artisans"
buttons={[
{
text: "Visit Our Shop",
href: "https://maps.google.com/?q=44+Souk+Semmarine+Marrakech+40000",
},
text: "Visit Our Shop", href: "https://maps.google.com/?q=44+Souk+Semmarine+Marrakech+40000"},
{
text: "Contact Us",
href: "tel:+212524426410",
},
text: "Contact Us", href: "tel:+212524426410"},
]}
buttonAnimation="slide-up"
ariaLabel="Gallery hero section"
@@ -77,14 +67,7 @@ export default function GalleryPage() {
description="A trusted destination for tourists seeking authentic Moroccan craftsmanship and unique souvenirs."
tag="Trusted Partner"
names={[
"Rick Steves Travel",
"Marrakech Tourism Board",
"Local Tour Guides",
"Travel Agencies Worldwide",
"Cultural Heritage Organization",
"Souk Semmarine Association",
"Moroccan Artisan Network",
]}
"Rick Steves Travel", "Marrakech Tourism Board", "Local Tour Guides", "Travel Agencies Worldwide", "Cultural Heritage Organization", "Souk Semmarine Association", "Moroccan Artisan Network"]}
textboxLayout="default"
useInvertedBackground={false}
speed={40}
@@ -99,13 +82,9 @@ export default function GalleryPage() {
useInvertedBackground={true}
buttons={[
{
text: "Browse Products",
href: "/products",
},
text: "Browse Products", href: "/products"},
{
text: "Custom Orders",
href: "https://wa.me/212524426410",
},
text: "Custom Orders", href: "https://wa.me/212524426410"},
]}
buttonAnimation="slide-up"
/>
@@ -113,70 +92,43 @@ export default function GalleryPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/street-ait-ben-haddou-village_268835-7026.jpg?_wi=4"
imageSrc="http://img.b2bpic.net/free-photo/street-ait-ben-haddou-village_268835-7026.jpg"
imageAlt="Marrakech Souk Semmarine"
columns={[
{
title: "Shop",
items: [
title: "Shop", items: [
{
label: "Moroccan Rugs",
href: "/products",
},
label: "Moroccan Rugs", href: "/products"},
{
label: "Handmade Textiles",
href: "/products",
},
label: "Handmade Textiles", href: "/products"},
{
label: "Traditional Crafts",
href: "/products",
},
label: "Traditional Crafts", href: "/products"},
{
label: "Gift Ideas",
href: "/products",
},
label: "Gift Ideas", href: "/products"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/gallery",
},
label: "About Us", href: "/gallery"},
{
label: "Our Story",
href: "/gallery",
},
label: "Our Story", href: "/gallery"},
{
label: "Gallery",
href: "/gallery",
},
label: "Gallery", href: "/gallery"},
{
label: "Reviews",
href: "/products",
},
label: "Reviews", href: "/products"},
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{
label: "Phone: +212 5 24 42 64 10",
href: "tel:+212524426410",
},
label: "Phone: +212 5 24 42 64 10", href: "tel:+212524426410"},
{
label: "WhatsApp",
href: "https://wa.me/212524426410",
},
label: "WhatsApp", href: "https://wa.me/212524426410"},
{
label: "Visit Us",
href: "https://maps.google.com/?q=44+Souk+Semmarine+Marrakech+40000",
},
label: "Visit Us", href: "https://maps.google.com/?q=44+Souk+Semmarine+Marrakech+40000"},
{
label: "Contact Form",
href: "/products",
},
label: "Contact Form", href: "/products"},
],
},
]}

View File

@@ -22,8 +22,7 @@ export default function HomePage() {
const footerColumns = [
{
title: "Shop",
items: [
title: "Shop", items: [
{ label: "Moroccan Rugs", href: "/" },
{ label: "Handmade Textiles", href: "/" },
{ label: "Traditional Crafts", href: "/" },
@@ -31,8 +30,7 @@ export default function HomePage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Story", href: "/about" },
{ label: "Gallery", href: "/" },
@@ -40,8 +38,7 @@ export default function HomePage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Phone: +212 5 24 42 64 10", href: "tel:+212524426410" },
{ label: "WhatsApp", href: "https://wa.me/212524426410" },
{ label: "Visit Us", href: "https://maps.google.com/?q=44+Souk+Semmarine+Marrakech+40000" },
@@ -57,7 +54,7 @@ export default function HomePage() {
borderRadius="soft"
contentWidth="small"
sizing="largeSmallSizeLargeTitles"
background="grid"
background="circleGradient"
cardStyle="inset"
primaryButtonStyle="double-inset"
secondaryButtonStyle="radial-glow"
@@ -84,20 +81,14 @@ export default function HomePage() {
<HeroCentered
title="Authentic Moroccan Rugs & Crafts in Marrakech"
description="Discover handmade treasures in the heart of the Medina. Traditional Moroccan artisans crafting unique rugs, textiles, and authentic souvenirs for generations."
background={{ variant: "grid" }}
background={{ variant: "plain" }}
avatars={[
{
src: "http://img.b2bpic.net/free-photo/people-taking-part-sustainable-travel-movement_23-2151049498.jpg",
alt: "Happy customer",
},
src: "http://img.b2bpic.net/free-photo/people-taking-part-sustainable-travel-movement_23-2151049498.jpg", alt: "Happy customer"},
{
src: "http://img.b2bpic.net/free-photo/woman-shopping-ramadan-side-view_23-2150154490.jpg",
alt: "Satisfied visitor",
},
src: "http://img.b2bpic.net/free-photo/woman-shopping-ramadan-side-view_23-2150154490.jpg", alt: "Satisfied visitor"},
{
src: "http://img.b2bpic.net/free-photo/girl-cozy-cafe-warms-herself-up-with-cup-hot-coffee_343596-4397.jpg",
alt: "Tourist enjoying bazaar",
},
src: "http://img.b2bpic.net/free-photo/girl-cozy-cafe-warms-herself-up-with-cup-hot-coffee_343596-4397.jpg", alt: "Tourist enjoying bazaar"},
]}
avatarText="Trusted by thousands of tourists"
buttons={[
@@ -117,26 +108,11 @@ export default function HomePage() {
tag="New Arrivals"
products={[
{
id: "1",
name: "Moroccan Berber Rug",
price: "$450",
imageSrc: "http://img.b2bpic.net/free-photo/fabric-texture-background_1385-452.jpg?_wi=1",
imageAlt: "Traditional Moroccan Berber Rug",
},
id: "1", name: "Moroccan Berber Rug", price: "$450", imageSrc: "http://img.b2bpic.net/free-photo/fabric-texture-background_1385-452.jpg", imageAlt: "Traditional Moroccan Berber Rug"},
{
id: "2",
name: "Handwoven Wool Carpet",
price: "$650",
imageSrc: "http://img.b2bpic.net/free-photo/women-heaphones-vinyl_1296-495.jpg?_wi=1",
imageAlt: "Handwoven Moroccan Wool Carpet",
},
id: "2", name: "Handwoven Wool Carpet", price: "$650", imageSrc: "http://img.b2bpic.net/free-photo/women-heaphones-vinyl_1296-495.jpg", imageAlt: "Handwoven Moroccan Wool Carpet"},
{
id: "3",
name: "Moroccan Textiles Set",
price: "$380",
imageSrc: "http://img.b2bpic.net/free-photo/hand-woven-geometric-denim-area-rug-jute-braided-home-background-texture_169016-47066.jpg?_wi=1",
imageAlt: "Moroccan Handmade Textiles",
},
id: "3", name: "Moroccan Textiles Set", price: "$380", imageSrc: "http://img.b2bpic.net/free-photo/hand-woven-geometric-denim-area-rug-jute-braided-home-background-texture_169016-47066.jpg", imageAlt: "Moroccan Handmade Textiles"},
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
@@ -155,9 +131,7 @@ export default function HomePage() {
useInvertedBackground={true}
buttons={[
{
text: "Get Directions",
href: "https://maps.google.com/?q=44+Souk+Semmarine+Marrakech+40000",
},
text: "Get Directions", href: "https://maps.google.com/?q=44+Souk+Semmarine+Marrakech+40000"},
{ text: "Learn More", href: "/about" },
]}
buttonAnimation="slide-up"
@@ -169,29 +143,13 @@ export default function HomePage() {
<TestimonialCardTwelve
testimonials={[
{
id: "1",
name: "Sarah Johnson",
imageSrc: "http://img.b2bpic.net/free-photo/people-taking-part-sustainable-travel-movement_23-2151049498.jpg?_wi=1",
imageAlt: "Sarah Johnson",
},
id: "1", name: "Sarah Johnson", imageSrc: "http://img.b2bpic.net/free-photo/people-taking-part-sustainable-travel-movement_23-2151049498.jpg", imageAlt: "Sarah Johnson"},
{
id: "2",
name: "Michael Chen",
imageSrc: "http://img.b2bpic.net/free-photo/woman-shopping-ramadan-side-view_23-2150154490.jpg?_wi=1",
imageAlt: "Michael Chen",
},
id: "2", name: "Michael Chen", imageSrc: "http://img.b2bpic.net/free-photo/woman-shopping-ramadan-side-view_23-2150154490.jpg", imageAlt: "Michael Chen"},
{
id: "3",
name: "Emma Rodriguez",
imageSrc: "http://img.b2bpic.net/free-photo/girl-cozy-cafe-warms-herself-up-with-cup-hot-coffee_343596-4397.jpg?_wi=1",
imageAlt: "Emma Rodriguez",
},
id: "3", name: "Emma Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/girl-cozy-cafe-warms-herself-up-with-cup-hot-coffee_343596-4397.jpg", imageAlt: "Emma Rodriguez"},
{
id: "4",
name: "David Kim",
imageSrc: "http://img.b2bpic.net/free-photo/muslim-woman-arab-restaurant_23-2147796828.jpg?_wi=1",
imageAlt: "David Kim",
},
id: "4", name: "David Kim", imageSrc: "http://img.b2bpic.net/free-photo/muslim-woman-arab-restaurant_23-2147796828.jpg", imageAlt: "David Kim"},
]}
cardTitle="Over 10,000 tourists trust Chateau des Souks for authentic Moroccan rugs and handmade crafts"
cardTag="Customer Love"
@@ -207,14 +165,7 @@ export default function HomePage() {
description="A trusted destination for tourists seeking authentic Moroccan craftsmanship and unique souvenirs."
tag="Trusted Partner"
names={[
"Rick Steves Travel",
"Marrakech Tourism Board",
"Local Tour Guides",
"Travel Agencies Worldwide",
"Cultural Heritage Organization",
"Souk Semmarine Association",
"Moroccan Artisan Network",
]}
"Rick Steves Travel", "Marrakech Tourism Board", "Local Tour Guides", "Travel Agencies Worldwide", "Cultural Heritage Organization", "Souk Semmarine Association", "Moroccan Artisan Network"]}
textboxLayout="default"
useInvertedBackground={false}
speed={40}
@@ -227,7 +178,7 @@ export default function HomePage() {
<ContactText
text="Ready to bring Moroccan authenticity into your home? Contact us today for inquiries, custom orders, or to plan your visit to our shop in the Marrakech Medina."
animationType="entrance-slide"
background={{ variant: "grid" }}
background={{ variant: "plain" }}
useInvertedBackground={false}
buttons={[
{ text: "Call Now: +212 5 24 42 64 10", href: "tel:+212524426410" },
@@ -239,7 +190,7 @@ export default function HomePage() {
{/* Footer */}
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/street-ait-ben-haddou-village_268835-7026.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/street-ait-ben-haddou-village_268835-7026.jpg"
imageAlt="Marrakech Souk Semmarine"
columns={footerColumns}
logoText="Chateau des Souks"

View File

@@ -17,7 +17,7 @@ export default function ProductsPage() {
borderRadius="soft"
contentWidth="small"
sizing="largeSmallSizeLargeTitles"
background="grid"
background="circleGradient"
cardStyle="inset"
primaryButtonStyle="double-inset"
secondaryButtonStyle="radial-glow"
@@ -42,31 +42,21 @@ export default function ProductsPage() {
<HeroCentered
title="Authentic Moroccan Rugs & Crafts in Marrakech"
description="Discover handmade treasures in the heart of the Medina. Traditional Moroccan artisans crafting unique rugs, textiles, and authentic souvenirs for over generations."
background={{ variant: "grid" }}
background={{ variant: "plain" }}
avatars={[
{
src: "http://img.b2bpic.net/free-photo/people-taking-part-sustainable-travel-movement_23-2151049498.jpg",
alt: "Happy customer",
},
src: "http://img.b2bpic.net/free-photo/people-taking-part-sustainable-travel-movement_23-2151049498.jpg", alt: "Happy customer"},
{
src: "http://img.b2bpic.net/free-photo/woman-shopping-ramadan-side-view_23-2150154490.jpg",
alt: "Satisfied visitor",
},
src: "http://img.b2bpic.net/free-photo/woman-shopping-ramadan-side-view_23-2150154490.jpg", alt: "Satisfied visitor"},
{
src: "http://img.b2bpic.net/free-photo/girl-cozy-cafe-warms-herself-up-with-cup-hot-coffee_343596-4397.jpg",
alt: "Tourist enjoying bazaar",
},
src: "http://img.b2bpic.net/free-photo/girl-cozy-cafe-warms-herself-up-with-cup-hot-coffee_343596-4397.jpg", alt: "Tourist enjoying bazaar"},
]}
avatarText="Trusted by thousands of tourists"
buttons={[
{
text: "Call Now",
href: "tel:+212524426410",
},
text: "Call Now", href: "tel:+212524426410"},
{
text: "Chat on WhatsApp",
href: "https://wa.me/212524426410",
},
text: "Chat on WhatsApp", href: "https://wa.me/212524426410"},
]}
buttonAnimation="slide-up"
ariaLabel="Hero section"
@@ -80,29 +70,14 @@ export default function ProductsPage() {
tag="New Arrivals"
products={[
{
id: "1",
name: "Moroccan Berber Rug",
price: "$450",
imageSrc:
"http://img.b2bpic.net/free-photo/fabric-texture-background_1385-452.jpg?_wi=2",
imageAlt: "Traditional Moroccan Berber Rug",
},
id: "1", name: "Moroccan Berber Rug", price: "$450", imageSrc:
"http://img.b2bpic.net/free-photo/fabric-texture-background_1385-452.jpg", imageAlt: "Traditional Moroccan Berber Rug"},
{
id: "2",
name: "Handwoven Wool Carpet",
price: "$650",
imageSrc:
"http://img.b2bpic.net/free-photo/women-heaphones-vinyl_1296-495.jpg?_wi=2",
imageAlt: "Handwoven Moroccan Wool Carpet",
},
id: "2", name: "Handwoven Wool Carpet", price: "$650", imageSrc:
"http://img.b2bpic.net/free-photo/women-heaphones-vinyl_1296-495.jpg", imageAlt: "Handwoven Moroccan Wool Carpet"},
{
id: "3",
name: "Moroccan Textiles Set",
price: "$380",
imageSrc:
"http://img.b2bpic.net/free-photo/hand-woven-geometric-denim-area-rug-jute-braided-home-background-texture_169016-47066.jpg?_wi=2",
imageAlt: "Moroccan Handmade Textiles",
},
id: "3", name: "Moroccan Textiles Set", price: "$380", imageSrc:
"http://img.b2bpic.net/free-photo/hand-woven-geometric-denim-area-rug-jute-braided-home-background-texture_169016-47066.jpg", imageAlt: "Moroccan Handmade Textiles"},
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
@@ -110,9 +85,7 @@ export default function ProductsPage() {
useInvertedBackground={false}
buttons={[
{
text: "Inquire About Products",
href: "#contact",
},
text: "Inquire About Products", href: "#contact"},
]}
buttonAnimation="slide-up"
/>
@@ -125,13 +98,9 @@ export default function ProductsPage() {
useInvertedBackground={true}
buttons={[
{
text: "Get Directions",
href: "https://maps.google.com/?q=44+Souk+Semmarine+Marrakech+40000",
},
text: "Get Directions", href: "https://maps.google.com/?q=44+Souk+Semmarine+Marrakech+40000"},
{
text: "Learn More",
href: "/gallery",
},
text: "Learn More", href: "/gallery"},
]}
buttonAnimation="slide-up"
/>
@@ -141,33 +110,17 @@ export default function ProductsPage() {
<TestimonialCardTwelve
testimonials={[
{
id: "1",
name: "Sarah Johnson",
imageSrc:
"http://img.b2bpic.net/free-photo/people-taking-part-sustainable-travel-movement_23-2151049498.jpg?_wi=2",
imageAlt: "Sarah Johnson",
},
id: "1", name: "Sarah Johnson", imageSrc:
"http://img.b2bpic.net/free-photo/people-taking-part-sustainable-travel-movement_23-2151049498.jpg", imageAlt: "Sarah Johnson"},
{
id: "2",
name: "Michael Chen",
imageSrc:
"http://img.b2bpic.net/free-photo/woman-shopping-ramadan-side-view_23-2150154490.jpg?_wi=2",
imageAlt: "Michael Chen",
},
id: "2", name: "Michael Chen", imageSrc:
"http://img.b2bpic.net/free-photo/woman-shopping-ramadan-side-view_23-2150154490.jpg", imageAlt: "Michael Chen"},
{
id: "3",
name: "Emma Rodriguez",
imageSrc:
"http://img.b2bpic.net/free-photo/girl-cozy-cafe-warms-herself-up-with-cup-hot-coffee_343596-4397.jpg?_wi=2",
imageAlt: "Emma Rodriguez",
},
id: "3", name: "Emma Rodriguez", imageSrc:
"http://img.b2bpic.net/free-photo/girl-cozy-cafe-warms-herself-up-with-cup-hot-coffee_343596-4397.jpg", imageAlt: "Emma Rodriguez"},
{
id: "4",
name: "David Kim",
imageSrc:
"http://img.b2bpic.net/free-photo/muslim-woman-arab-restaurant_23-2147796828.jpg?_wi=2",
imageAlt: "David Kim",
},
id: "4", name: "David Kim", imageSrc:
"http://img.b2bpic.net/free-photo/muslim-woman-arab-restaurant_23-2147796828.jpg", imageAlt: "David Kim"},
]}
cardTitle="Over 10,000 tourists trust Chateau des Souks for authentic Moroccan rugs and handmade crafts"
cardTag="Customer Love"
@@ -180,87 +133,56 @@ export default function ProductsPage() {
<ContactText
text="Ready to bring Moroccan authenticity into your home? Contact us today for inquiries, custom orders, or to plan your visit to our shop in the Marrakech Medina."
animationType="entrance-slide"
background={{ variant: "grid" }}
background={{ variant: "plain" }}
useInvertedBackground={false}
buttons={[
{
text: "Call Now: +212 5 24 42 64 10",
href: "tel:+212524426410",
},
text: "Call Now: +212 5 24 42 64 10", href: "tel:+212524426410"},
{
text: "Chat on WhatsApp",
href: "https://wa.me/212524426410",
},
text: "Chat on WhatsApp", href: "https://wa.me/212524426410"},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/street-ait-ben-haddou-village_268835-7026.jpg?_wi=3"
imageSrc="http://img.b2bpic.net/free-photo/street-ait-ben-haddou-village_268835-7026.jpg"
imageAlt="Marrakech Souk Semmarine"
columns={[
{
title: "Shop",
items: [
title: "Shop", items: [
{
label: "Moroccan Rugs",
href: "/products",
},
label: "Moroccan Rugs", href: "/products"},
{
label: "Handmade Textiles",
href: "/products",
},
label: "Handmade Textiles", href: "/products"},
{
label: "Traditional Crafts",
href: "/products",
},
label: "Traditional Crafts", href: "/products"},
{
label: "Gift Ideas",
href: "/products",
},
label: "Gift Ideas", href: "/products"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/gallery",
},
label: "About Us", href: "/gallery"},
{
label: "Our Story",
href: "/gallery",
},
label: "Our Story", href: "/gallery"},
{
label: "Gallery",
href: "/gallery",
},
label: "Gallery", href: "/gallery"},
{
label: "Reviews",
href: "/products",
},
label: "Reviews", href: "/products"},
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{
label: "Phone: +212 5 24 42 64 10",
href: "tel:+212524426410",
},
label: "Phone: +212 5 24 42 64 10", href: "tel:+212524426410"},
{
label: "WhatsApp",
href: "https://wa.me/212524426410",
},
label: "WhatsApp", href: "https://wa.me/212524426410"},
{
label: "Visit Us",
href: "https://maps.google.com/?q=44+Souk+Semmarine+Marrakech+40000",
},
label: "Visit Us", href: "https://maps.google.com/?q=44+Souk+Semmarine+Marrakech+40000"},
{
label: "Contact Form",
href: "/products",
},
label: "Contact Form", href: "/products"},
],
},
]}