Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-03-09 19:23:52 +00:00
4 changed files with 143 additions and 72 deletions

View File

@@ -33,7 +33,8 @@ export default function CoffeePage() {
{ name: "Visit", id: "visit" },
]}
button={{
text: "Get Directions", href: "/visit"}}
text: "Get Directions", href: "/visit"
}}
/>
</div>
@@ -48,13 +49,16 @@ export default function CoffeePage() {
features={[
{
id: "1", title: "Ethiopian Single-Origin", tags: ["Bright Acidity", "Floral Notes", "Fresh Roast"],
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-coffee-process-work_23-2148366579.jpg?_wi=2", imageAlt: "Ethiopian single-origin coffee selection"},
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-coffee-process-work_23-2148366579.jpg?_wi=2", imageAlt: "Ethiopian single-origin coffee selection", onFeatureClick: () => window.location.href = "https://meccacoffeeco.com"
},
{
id: "2", title: "Colombian Small Batch", tags: ["Rich Body", "Chocolate Notes", "Artisan Roasted"],
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-coffee-process-work_23-2148366579.jpg?_wi=3", imageAlt: "Colombian small batch coffee beans"},
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-coffee-process-work_23-2148366579.jpg?_wi=3", imageAlt: "Colombian small batch coffee beans", onFeatureClick: () => window.location.href = "https://meccacoffeeco.com"
},
{
id: "3", title: "Espresso Blends", tags: ["Premium Grade", "Crema Rich", "Professional Grade"],
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-coffee-process-work_23-2148366579.jpg?_wi=4", imageAlt: "Premium espresso blend selection"},
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-coffee-process-work_23-2148366579.jpg?_wi=4", imageAlt: "Premium espresso blend selection", onFeatureClick: () => window.location.href = "https://meccacoffeeco.com"
},
]}
/>
</div>
@@ -70,13 +74,17 @@ export default function CoffeePage() {
gridVariant="uniform-all-items-equal"
products={[
{
id: "1", name: "Ethiopian Yirgacheffe - 12oz", price: "$16.99", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-coffee-plantation-webinar_23-2149435301.jpg?_wi=3", imageAlt: "Ethiopian Yirgacheffe coffee bag"},
id: "1", name: "Ethiopian Yirgacheffe - 12oz", price: "$16.99", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-coffee-plantation-webinar_23-2149435301.jpg?_wi=3", imageAlt: "Ethiopian Yirgacheffe coffee bag"
},
{
id: "2", name: "Colombian Geisha - 12oz", price: "$18.99", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-coffee-plantation-webinar_23-2149435301.jpg?_wi=4", imageAlt: "Colombian Geisha premium coffee"},
id: "2", name: "Colombian Geisha - 12oz", price: "$18.99", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-coffee-plantation-webinar_23-2149435301.jpg?_wi=4", imageAlt: "Colombian Geisha premium coffee"
},
{
id: "3", name: "Espresso Blend Dark - 1lb", price: "$14.99", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-coffee-plantation-webinar_23-2149435301.jpg?_wi=5", imageAlt: "Dark roast espresso blend"},
id: "3", name: "Espresso Blend Dark - 1lb", price: "$14.99", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-coffee-plantation-webinar_23-2149435301.jpg?_wi=5", imageAlt: "Dark roast espresso blend"
},
{
id: "4", name: "Medium Roast House Blend - 1lb", price: "$13.99", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-coffee-plantation-webinar_23-2149435301.jpg?_wi=6", imageAlt: "Medium roast house blend"},
id: "4", name: "Medium Roast House Blend - 1lb", price: "$13.99", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-coffee-plantation-webinar_23-2149435301.jpg?_wi=6", imageAlt: "Medium roast house blend"
},
]}
/>
</div>
@@ -88,9 +96,11 @@ export default function CoffeePage() {
animationType="entrance-slide"
buttons={[
{
text: "Visit Us", href: "/visit"},
text: "Visit Us", href: "/visit"
},
{
text: "Learn More", href: "/"},
text: "Learn More", href: "/"
},
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
@@ -108,31 +118,40 @@ export default function CoffeePage() {
{
title: "Shop", items: [
{
label: "Coffee", href: "/coffee"},
label: "Coffee", href: "/coffee"
},
{
label: "Tea", href: "/tea"},
label: "Tea", href: "/tea"
},
{
label: "Gifts & Kitchen", href: "/gifts"},
label: "Gifts & Kitchen", href: "/gifts"
},
],
},
{
title: "Company", items: [
{
label: "About Us", href: "/about"},
label: "About Us", href: "/about"
},
{
label: "Visit Us", href: "/visit"},
label: "Visit Us", href: "/visit"
},
{
label: "Contact", href: "tel:+19187493509"},
label: "Contact", href: "tel:+19187493509"
},
],
},
{
title: "Connect", items: [
{
label: "Instagram", href: "https://instagram.com"},
label: "Instagram", href: "https://instagram.com"
},
{
label: "Facebook", href: "https://facebook.com"},
label: "Facebook", href: "https://facebook.com"
},
{
label: "Privacy Policy", href: "#"},
label: "Privacy Policy", href: "#"
},
],
},
]}

View File

@@ -58,7 +58,8 @@ export default function GiftsPage() {
<NavbarStyleCentered
navItems={navItems}
button={{
text: "Get Directions", href: "/visit"}}
text: "Get Directions", href: "/visit"
}}
brandName="Mecca Coffee"
/>
</div>
@@ -67,13 +68,17 @@ export default function GiftsPage() {
<ProductCardThree
products={[
{
id: "1", name: "Artisanal Spice Collection Set", price: "$34.99", imageSrc: "http://img.b2bpic.net/free-photo/bulk-products-reusable-jars-display-local-supermarket_482257-98955.jpg?_wi=2", imageAlt: "Artisanal spice collection set for the kitchen"},
id: "1", name: "Artisanal Spice Collection Set", price: "$34.99", imageSrc: "http://img.b2bpic.net/free-photo/bulk-products-reusable-jars-display-local-supermarket_482257-98955.jpg?_wi=2", imageAlt: "Artisanal spice collection set for the kitchen"
},
{
id: "2", name: "Premium Kitchen Herbs Gift Box", price: "$24.99", imageSrc: "http://img.b2bpic.net/free-photo/view-food-arrangement-wooden-background_23-2148427742.jpg?_wi=2", imageAlt: "Premium kitchen herbs gift box"},
id: "2", name: "Premium Kitchen Herbs Gift Box", price: "$24.99", imageSrc: "http://img.b2bpic.net/free-photo/view-food-arrangement-wooden-background_23-2148427742.jpg?_wi=2", imageAlt: "Premium kitchen herbs gift box"
},
{
id: "3", name: "Luxury Gourmet Vinegar Collection", price: "$28.99", imageSrc: "http://img.b2bpic.net/free-photo/view-food-arrangement-wooden-background_23-2148427742.jpg?_wi=3", imageAlt: "Luxury gourmet vinegar collection"},
id: "3", name: "Luxury Gourmet Vinegar Collection", price: "$28.99", imageSrc: "http://img.b2bpic.net/free-photo/view-food-arrangement-wooden-background_23-2148427742.jpg?_wi=3", imageAlt: "Luxury gourmet vinegar collection"
},
{
id: "4", name: "Specialty Oils & Condiments Set", price: "$32.99", imageSrc: "http://img.b2bpic.net/free-photo/bulk-products-reusable-jars-display-local-supermarket_482257-98955.jpg?_wi=3", imageAlt: "Specialty oils and condiments gift set"},
id: "4", name: "Specialty Oils & Condiments Set", price: "$32.99", imageSrc: "http://img.b2bpic.net/free-photo/bulk-products-reusable-jars-display-local-supermarket_482257-98955.jpg?_wi=3", imageAlt: "Specialty oils and condiments gift set"
},
]}
title="Gifts & Kitchen Essentials"
description="Curated kitchen treasures and gift sets perfect for every occasion"
@@ -89,16 +94,20 @@ export default function GiftsPage() {
testimonials={[
{
id: "1", name: "Emma Rodriguez", role: "Gift Shopper", company: "Local Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-drinking-coffee-spacious-cafeteria_23-2150423998.jpg?_wi=4", imageAlt: "Emma Rodriguez testimonial"},
imageSrc: "http://img.b2bpic.net/free-photo/people-drinking-coffee-spacious-cafeteria_23-2150423998.jpg?_wi=4", imageAlt: "Emma Rodriguez testimonial"
},
{
id: "2", name: "Michael Torres", role: "Home Chef", company: "Local Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-woman-standing-bar-coffee-shop_176532-11599.jpg?_wi=4", imageAlt: "Michael Torres testimonial"},
imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-woman-standing-bar-coffee-shop_176532-11599.jpg?_wi=4", imageAlt: "Michael Torres testimonial"
},
{
id: "3", name: "Sarah Mitchell", role: "Kitchen Enthusiast", company: "Local Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-successful-handsome-businessman-with-stubble-showing-thumbs-up_1262-12629.jpg?_wi=4", imageAlt: "Sarah Mitchell testimonial"},
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-successful-handsome-businessman-with-stubble-showing-thumbs-up_1262-12629.jpg?_wi=4", imageAlt: "Sarah Mitchell testimonial"
},
{
id: "4", name: "James Chen", role: "Event Planner", company: "Local Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-with-book_93675-135579.jpg?_wi=3", imageAlt: "James Chen testimonial"},
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-with-book_93675-135579.jpg?_wi=3", imageAlt: "James Chen testimonial"
},
]}
title="Customers Love Our Gift Selection"
description="Perfect gifts for food lovers, home chefs, and anyone who appreciates quality"
@@ -115,9 +124,11 @@ export default function GiftsPage() {
animationType="entrance-slide"
buttons={[
{
text: "Shop Gifts", href: "/gifts"},
text: "Shop Gifts", href: "/gifts"
},
{
text: "Visit Now", href: "/visit"},
text: "Visit Now", href: "/visit"
},
]}
background={{ variant: "plain" }}
useInvertedBackground={false}

View File

@@ -38,7 +38,8 @@ export default function HomePage() {
{ name: "Visit", id: "visit" },
]}
button={{
text: "Get Directions", href: "/visit"}}
text: "Get Directions", href: "/visit"
}}
brandName="Mecca Coffee"
/>
</div>
@@ -56,26 +57,32 @@ export default function HomePage() {
imagePosition="right"
buttons={[
{
text: "Visit Us Today", href: "/visit"},
text: "Visit Us Today", href: "/visit"
},
{
text: "Explore Coffee & Tea", href: "/"},
text: "Explore Coffee & Tea", href: "/"
},
]}
buttonAnimation="slide-up"
testimonials={[
{
name: "Sarah Mitchell", handle: "Coffee Enthusiast", testimonial: "Super helpful staff with a great selection of spices, tea, and coffees.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-drinking-coffee-spacious-cafeteria_23-2150423998.jpg?_wi=1", imageAlt: "Sarah Mitchell testimonial"},
imageSrc: "http://img.b2bpic.net/free-photo/people-drinking-coffee-spacious-cafeteria_23-2150423998.jpg?_wi=1", imageAlt: "Sarah Mitchell testimonial"
},
{
name: "James Chen", handle: "Local Regular", testimonial: "A hidden gem for coffee lovers in Tulsa. The quality is unmatched.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-woman-standing-bar-coffee-shop_176532-11599.jpg?_wi=1", imageAlt: "James Chen testimonial"},
imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-woman-standing-bar-coffee-shop_176532-11599.jpg?_wi=1", imageAlt: "James Chen testimonial"
},
{
name: "Emma Rodriguez", handle: "Gift Shopper", testimonial: "Great place to browse for special kitchen gifts. Love everything here!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-successful-handsome-businessman-with-stubble-showing-thumbs-up_1262-12629.jpg?_wi=1", imageAlt: "Emma Rodriguez testimonial"},
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-successful-handsome-businessman-with-stubble-showing-thumbs-up_1262-12629.jpg?_wi=1", imageAlt: "Emma Rodriguez testimonial"
},
]}
mediaAnimation="slide-up"
useInvertedBackground={false}
background={{
variant: "plain"}}
variant: "plain"
}}
ariaLabel="Hero section showcasing Mecca Coffee Company"
/>
</div>
@@ -119,13 +126,16 @@ export default function HomePage() {
features={[
{
id: "1", title: "Premium Coffee Beans", tags: ["Small-Batch", "Single-Origin"],
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-coffee-process-work_23-2148366579.jpg?_wi=1", imageAlt: "Premium coffee bean selection"},
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-coffee-process-work_23-2148366579.jpg?_wi=1", imageAlt: "Premium coffee bean selection", onFeatureClick: () => window.location.href = "https://meccacoffeeco.com"
},
{
id: "2", title: "Specialty Tea Collection", tags: ["Loose Leaf", "Imported"],
imageSrc: "http://img.b2bpic.net/free-photo/pouring-milk-tea_23-2148550446.jpg?_wi=1", imageAlt: "Specialty tea collection"},
imageSrc: "http://img.b2bpic.net/free-photo/pouring-milk-tea_23-2148550446.jpg?_wi=1", imageAlt: "Specialty tea collection", onFeatureClick: () => window.location.href = "https://meccacoffeeco.com"
},
{
id: "3", title: "Artisanal Spices & More", tags: ["Gourmet", "Kitchen Gifts"],
imageSrc: "http://img.b2bpic.net/free-photo/view-food-arrangement-wooden-background_23-2148427742.jpg?_wi=1", imageAlt: "Artisanal spices and kitchen items"},
id: "3", title: "Artisanal Spices and More", tags: ["Gourmet", "Kitchen Gifts"],
imageSrc: "http://img.b2bpic.net/free-photo/view-food-arrangement-wooden-background_23-2148427742.jpg?_wi=1", imageAlt: "Artisanal spices and kitchen items", onFeatureClick: () => window.location.href = "https://meccacoffeeco.com"
},
]}
ariaLabel="Featured product categories section"
/>
@@ -142,13 +152,17 @@ export default function HomePage() {
gridVariant="uniform-all-items-equal"
products={[
{
id: "1", name: "Single-Origin Ethiopian Yirgacheffe", price: "$16.99", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-coffee-plantation-webinar_23-2149435301.jpg?_wi=1", imageAlt: "Ethiopian Yirgacheffe coffee beans"},
id: "1", name: "Single-Origin Ethiopian Yirgacheffe", price: "$16.99", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-coffee-plantation-webinar_23-2149435301.jpg?_wi=1", imageAlt: "Ethiopian Yirgacheffe coffee beans"
},
{
id: "2", name: "Medium Roast Espresso Blend", price: "$14.99", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-coffee-plantation-webinar_23-2149435301.jpg?_wi=2", imageAlt: "Medium roast espresso blend"},
id: "2", name: "Medium Roast Espresso Blend", price: "$14.99", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-coffee-plantation-webinar_23-2149435301.jpg?_wi=2", imageAlt: "Medium roast espresso blend"
},
{
id: "3", name: "Premium Loose Leaf Green Tea", price: "$12.99", imageSrc: "http://img.b2bpic.net/free-photo/shallow-focus-shot-rooibos-tea-isolated-white-background_181624-56242.jpg", imageAlt: "Premium loose leaf green tea"},
id: "3", name: "Premium Loose Leaf Green Tea", price: "$12.99", imageSrc: "http://img.b2bpic.net/free-photo/shallow-focus-shot-rooibos-tea-isolated-white-background_181624-56242.jpg", imageAlt: "Premium loose leaf green tea"
},
{
id: "4", name: "Artisanal Spice Collection Set", price: "$34.99", imageSrc: "http://img.b2bpic.net/free-photo/bulk-products-reusable-jars-display-local-supermarket_482257-98955.jpg?_wi=1", imageAlt: "Artisanal spice collection set"},
id: "4", name: "Artisanal Spice Collection Set", price: "$34.99", imageSrc: "http://img.b2bpic.net/free-photo/bulk-products-reusable-jars-display-local-supermarket_482257-98955.jpg?_wi=1", imageAlt: "Artisanal spice collection set"
},
]}
ariaLabel="Browse in-store products section"
/>
@@ -191,16 +205,20 @@ export default function HomePage() {
testimonials={[
{
id: "1", name: "Sarah Mitchell", role: "Coffee Enthusiast", company: "Local Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-drinking-coffee-spacious-cafeteria_23-2150423998.jpg?_wi=2", imageAlt: "Sarah Mitchell testimonial"},
imageSrc: "http://img.b2bpic.net/free-photo/people-drinking-coffee-spacious-cafeteria_23-2150423998.jpg?_wi=2", imageAlt: "Sarah Mitchell testimonial"
},
{
id: "2", name: "James Chen", role: "Daily Regular", company: "Local Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-woman-standing-bar-coffee-shop_176532-11599.jpg?_wi=2", imageAlt: "James Chen testimonial"},
imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-woman-standing-bar-coffee-shop_176532-11599.jpg?_wi=2", imageAlt: "James Chen testimonial"
},
{
id: "3", name: "Emma Rodriguez", role: "Gift Shopper", company: "Local Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-successful-handsome-businessman-with-stubble-showing-thumbs-up_1262-12629.jpg?_wi=2", imageAlt: "Emma Rodriguez testimonial"},
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-successful-handsome-businessman-with-stubble-showing-thumbs-up_1262-12629.jpg?_wi=2", imageAlt: "Emma Rodriguez testimonial"
},
{
id: "4", name: "Michael Torres", role: "Tea Connoisseur", company: "Local Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-with-book_93675-135579.jpg?_wi=1", imageAlt: "Michael Torres testimonial"},
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-with-book_93675-135579.jpg?_wi=1", imageAlt: "Michael Torres testimonial"
},
]}
ariaLabel="Customer testimonials section"
/>
@@ -214,7 +232,8 @@ export default function HomePage() {
textboxLayout="default"
useInvertedBackground={true}
names={[
"Tulsa Coffee Lovers", "Local Tea Community", "Gift Seekers", "Kitchen Enthusiasts", "Specialty Food Fans", "Artisan Discovery", "Premium Quality Shoppers"]}
"Tulsa Coffee Lovers", "Local Tea Community", "Gift Seekers", "Kitchen Enthusiasts", "Specialty Food Fans", "Artisan Discovery", "Premium Quality Shoppers"
]}
speed={40}
showCard={true}
ariaLabel="Social proof marquee section"
@@ -228,12 +247,15 @@ export default function HomePage() {
animationType="entrance-slide"
buttons={[
{
text: "Visit the Shop", href: "/visit"},
text: "Visit the Shop", href: "/visit"
},
{
text: "Call Now", href: "tel:+19187493509"},
text: "Call Now", href: "tel:+19187493509"
},
]}
background={{
variant: "plain"}}
variant: "plain"
}}
useInvertedBackground={false}
ariaLabel="Contact section call-to-action"
/>
@@ -250,31 +272,40 @@ export default function HomePage() {
{
title: "Shop", items: [
{
label: "Coffee", href: "/coffee"},
label: "Coffee", href: "/coffee"
},
{
label: "Tea", href: "/tea"},
label: "Tea", href: "/tea"
},
{
label: "Gifts & Kitchen", href: "/gifts"},
label: "Gifts & Kitchen", href: "/gifts"
},
],
},
{
title: "Company", items: [
{
label: "About Us", href: "/about"},
label: "About Us", href: "/about"
},
{
label: "Visit Us", href: "/visit"},
label: "Visit Us", href: "/visit"
},
{
label: "Contact", href: "tel:+19187493509"},
label: "Contact", href: "tel:+19187493509"
},
],
},
{
title: "Connect", items: [
{
label: "Instagram", href: "https://instagram.com"},
label: "Instagram", href: "https://instagram.com"
},
{
label: "Facebook", href: "https://facebook.com"},
label: "Facebook", href: "https://facebook.com"
},
{
label: "Privacy Policy", href: "#"},
label: "Privacy Policy", href: "#"
},
],
},
]}

View File

@@ -60,7 +60,8 @@ export default function TeaPage() {
<NavbarStyleCentered
navItems={navItems}
button={{
text: "Get Directions", href: "/visit"}}
text: "Get Directions", href: "/visit"
}}
brandName="Mecca Coffee"
/>
</div>
@@ -96,13 +97,16 @@ export default function TeaPage() {
features={[
{
id: "1", title: "Green Teas & Oolongs", tags: ["Fresh", "Delicate Flavor"],
imageSrc: "http://img.b2bpic.net/free-photo/pouring-milk-tea_23-2148550446.jpg?_wi=3", imageAlt: "Green tea and oolong selection"},
imageSrc: "http://img.b2bpic.net/free-photo/pouring-milk-tea_23-2148550446.jpg?_wi=3", imageAlt: "Green tea and oolong selection", onFeatureClick: () => window.location.href = "https://meccacoffeeco.com"
},
{
id: "2", title: "Black & Pu-erh Teas", tags: ["Bold", "Full-Bodied"],
imageSrc: "http://img.b2bpic.net/free-photo/pouring-milk-tea_23-2148550446.jpg?_wi=4", imageAlt: "Black tea and pu-erh collection"},
imageSrc: "http://img.b2bpic.net/free-photo/pouring-milk-tea_23-2148550446.jpg?_wi=4", imageAlt: "Black tea and pu-erh collection", onFeatureClick: () => window.location.href = "https://meccacoffeeco.com"
},
{
id: "3", title: "Herbal & Specialty Blends", tags: ["Organic", "Unique Blends"],
imageSrc: "http://img.b2bpic.net/free-photo/pouring-milk-tea_23-2148550446.jpg?_wi=5", imageAlt: "Herbal tea blends"},
imageSrc: "http://img.b2bpic.net/free-photo/pouring-milk-tea_23-2148550446.jpg?_wi=5", imageAlt: "Herbal tea blends", onFeatureClick: () => window.location.href = "https://meccacoffeeco.com"
},
]}
animationType="slide-up"
title="Tea Categories"
@@ -117,16 +121,20 @@ export default function TeaPage() {
testimonials={[
{
id: "1", name: "Sarah Mitchell", role: "Tea Enthusiast", company: "Local Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-drinking-coffee-spacious-cafeteria_23-2150423998.jpg?_wi=3", imageAlt: "Sarah Mitchell testimonial"},
imageSrc: "http://img.b2bpic.net/free-photo/people-drinking-coffee-spacious-cafeteria_23-2150423998.jpg?_wi=3", imageAlt: "Sarah Mitchell testimonial"
},
{
id: "2", name: "James Chen", role: "Tea Connoisseur", company: "Local Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-woman-standing-bar-coffee-shop_176532-11599.jpg?_wi=3", imageAlt: "James Chen testimonial"},
imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-woman-standing-bar-coffee-shop_176532-11599.jpg?_wi=3", imageAlt: "James Chen testimonial"
},
{
id: "3", name: "Emma Rodriguez", role: "Wellness Advocate", company: "Local Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-successful-handsome-businessman-with-stubble-showing-thumbs-up_1262-12629.jpg?_wi=3", imageAlt: "Emma Rodriguez testimonial"},
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-successful-handsome-businessman-with-stubble-showing-thumbs-up_1262-12629.jpg?_wi=3", imageAlt: "Emma Rodriguez testimonial"
},
{
id: "4", name: "Michael Torres", role: "Tea Lover", company: "Local Community", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-with-book_93675-135579.jpg?_wi=2", imageAlt: "Michael Torres testimonial"},
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-with-book_93675-135579.jpg?_wi=2", imageAlt: "Michael Torres testimonial"
},
]}
title="Tea Lovers Share Their Experience"
description="Discover why tea enthusiasts choose Mecca Coffee Company for their specialty tea needs"
@@ -143,9 +151,11 @@ export default function TeaPage() {
animationType="entrance-slide"
buttons={[
{
text: "Visit the Shop", href: "/visit"},
text: "Visit the Shop", href: "/visit"
},
{
text: "Call Us", href: "tel:+19187493509"},
text: "Call Us", href: "tel:+19187493509"
},
]}
background={{ variant: "plain" }}
useInvertedBackground={false}