Merge version_5 into main
Merge version_5 into main
This commit was merged in pull request #11.
This commit is contained in:
408
src/app/page.tsx
408
src/app/page.tsx
@@ -3,19 +3,19 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
|
||||
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
||||
import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout';
|
||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
||||
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||
import TeamCardFive from '@/components/sections/team/TeamCardFive';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import { Coffee, Sparkles, Star, MapPin, Camera, Clock, Phone } from 'lucide-react';
|
||||
import { Coffee, Sparkles, Star, MapPin, Camera, Clock, TrendingUp, Users, Award, CheckCircle } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -35,315 +35,360 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Caribou Coffee"
|
||||
navItems={[
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Reviews", id: "testimonial" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Get Directions", href: "https://maps.google.com/?q=24.24235,55.700408" }}
|
||||
animateOnLoad={false}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
title="Caribou Coffee – Taweah Park"
|
||||
description="Discover our calm café experience inside Towayya Park. Two levels of seating with stunning park views, signature drinks, and the perfect spot to work or relax. Join us for specialty coffee crafted with care."
|
||||
background={{ variant: "radial-gradient" }}
|
||||
tag="Park-View Café"
|
||||
tagIcon={Coffee}
|
||||
tagAnimation="slide-up"
|
||||
mediaItems={[
|
||||
title="Caribou Coffee – Taweah Park"
|
||||
description="Discover our calm café experience inside Towayya Park. Two levels of seating with stunning park views, signature drinks, and the perfect spot to work or relax."
|
||||
background={{ variant: "plain" }}
|
||||
images={[
|
||||
{
|
||||
imageSrc: "https://images.unsplash.com/photo-1511920170033-f8396924c348?w=800&h=600&fit=crop", imageAlt: "Park view seating area at Caribou Coffee Taweah Park"
|
||||
src: "https://images.unsplash.com/photo-1511920170033-f8396924c348?w=800&h=600&fit=crop", alt: "Park view seating area at Caribou Coffee Taweah Park"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://images.unsplash.com/photo-1494857671063-26f21f4ad20e?w=800&h=600&fit=crop", imageAlt: "Interior seating with warm pendant lighting"
|
||||
src: "https://images.unsplash.com/photo-1494857671063-26f21f4ad20e?w=800&h=600&fit=crop", alt: "Interior seating with warm pendant lighting"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://images.unsplash.com/photo-1502920917128-1aa500764cbd?w=800&h=600&fit=crop", imageAlt: "Rooftop seating with park views"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://images.unsplash.com/photo-1509042239860-f550ce710b93?w=800&h=600&fit=crop", imageAlt: "Signature beverage collection"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://images.unsplash.com/photo-1568901346375-23c9450c58cd?w=800&h=600&fit=crop", imageAlt: "Pastry and food selection"
|
||||
src: "https://images.unsplash.com/photo-1502920917128-1aa500764cbd?w=800&h=600&fit=crop", alt: "Rooftop seating with park views"
|
||||
}
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
animationType="slide-up"
|
||||
buttons={[
|
||||
{ text: "Get Directions", href: "https://maps.google.com/?q=24.24235,55.700408" },
|
||||
{ text: "Call Now", href: "tel:+97137556364" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
ariaLabel="Caribou Coffee Taweah Park hero section with location details"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TextSplitAbout
|
||||
title="About Caribou Coffee"
|
||||
description={[
|
||||
"Located inside Towayya Park in Al Ain, Caribou Coffee offers a unique café experience with two levels of comfortable seating and breathtaking park views.", "We specialize in handcrafted specialty drinks, freshly baked pastries, and light meals prepared with the finest ingredients. Our calm atmosphere makes it the perfect destination for work, relaxation, or social gatherings.", "Open daily from 7 AM to 12 AM, we're committed to providing exceptional service and creating memorable moments for every visitor."
|
||||
<MediaSplitTabsAbout
|
||||
tag="Our Story"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
title="Welcome to Caribou Coffee at Taweah Park"
|
||||
description="Experience specialty coffee crafted with care in a serene park setting."
|
||||
imageSrc="https://images.unsplash.com/photo-1511920170033-f8396924c348?w=800&h=600&fit=crop"
|
||||
imageAlt="Caribou Coffee exterior"
|
||||
imagePosition="left"
|
||||
mediaAnimation="slide-up"
|
||||
tabs={[
|
||||
{
|
||||
id: "tab1", label: "Ambiance", content: "Two levels of comfortable seating with park views, ambient lighting, and a welcoming atmosphere perfect for work or relaxation."
|
||||
},
|
||||
{
|
||||
id: "tab2", label: "Quality", content: "Our signature drinks showcase expertly crafted espresso, creative flavor combinations, and premium ingredients."
|
||||
},
|
||||
{
|
||||
id: "tab3", label: "Location", content: "Located inside Towayya Park in Al Ain with easy access, ample seating, and stunning outdoor views."
|
||||
}
|
||||
]}
|
||||
showBorder={true}
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Learn More", href: "#features" }
|
||||
{ text: "Reserve a Table", href: "#reserve" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwentySeven
|
||||
title="What Makes Us Special"
|
||||
description="Discover the unique features that set Caribou Coffee at Taweah Park apart"
|
||||
tag="Highlights"
|
||||
tagIcon={Sparkles}
|
||||
<FeatureCardEight
|
||||
tag="Why Choose Us"
|
||||
tagIcon={Award}
|
||||
tagAnimation="slide-up"
|
||||
title="What Makes Caribou Coffee Special"
|
||||
description="Premium quality meets perfect location. We combine specialty coffee expertise with an unbeatable park setting."
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Park-View Seating", description: "Two levels of comfortable seating with panoramic views of Towayya Park. The perfect vantage point for relaxation and inspiration.", imageSrc: "https://images.unsplash.com/photo-1502920917128-1aa500764cbd?w=600&h=600&fit=crop", imageAlt: "Park-view seating area"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Specialty Coffee", description: "Handcrafted espresso drinks, signature lattes, and seasonal beverages prepared by our expert baristas using premium beans.", imageSrc: "https://images.unsplash.com/photo-1509042239860-f550ce710b93?w=600&h=600&fit=crop", imageAlt: "Specialty coffee drinks"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Fresh Pastries", description: "Daily-baked croissants, muffins, and pastries sourced from local bakeries. Perfect complement to your favorite beverage.", imageSrc: "https://images.unsplash.com/photo-1555939594-58d7cb561df1?w=600&h=600&fit=crop", imageAlt: "Fresh pastries selection"
|
||||
},
|
||||
{
|
||||
id: "4", title: "Ideal Workspace", description: "High-speed WiFi, comfortable seating, and a calm atmosphere make it the perfect spot for remote work or studying.", imageSrc: "https://images.unsplash.com/photo-1494857671063-26f21f4ad20e?w=600&h=600&fit=crop", imageAlt: "Work-friendly interior"
|
||||
}
|
||||
{ title: "Specialty Coffee", description: "Expertly crafted espresso drinks and signature beverages" },
|
||||
{ title: "Park Views", description: "Two-level seating with stunning Towayya Park vistas" },
|
||||
{ title: "Perfect Spot", description: "Ideal location for work, meetings, or relaxation" },
|
||||
{ title: "Extended Hours", description: "Open 7 AM to 12 AM daily for your convenience" },
|
||||
{ title: "Quality Pastries", description: "Fresh-baked pastries and food items" },
|
||||
{ title: "Welcoming Vibe", description: "Calm, friendly atmosphere appreciated by all visitors" }
|
||||
]}
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
buttons={[
|
||||
{ text: "See Full Menu", href: "#menu" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardFive
|
||||
title="Simple, Transparent Pricing"
|
||||
description="Choose from our curated menu of specialty drinks and food items"
|
||||
tag="Menu Pricing"
|
||||
<PricingCardNine
|
||||
title="Our Menu Pricing"
|
||||
description="Discover our signature drinks and food items at great prices. Premium quality, affordable prices."
|
||||
tag="Featured Items"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
plans={[
|
||||
{
|
||||
id: "espresso", tag: "Signature Espresso", price: "AED 18", period: "/cup", description: "Pure espresso perfection - our foundation for all specialty drinks", button: { text: "Order Now", href: "#menu" },
|
||||
featuresTitle: "What's Included:", features: [
|
||||
"Single or double shot options", "Freshly roasted premium beans", "Perfect crema and body", "Customizable strength"
|
||||
]
|
||||
id: "1", badge: "Signature Drinks", price: "AED 22-25", subtitle: "Specialty coffee crafted with care", buttons: [
|
||||
{ text: "Order", href: "#order" }
|
||||
],
|
||||
features: ["Campfire Mocha", "Spanish Latte", "Salted Caramel Budino", "Mint Condition Mocha"]
|
||||
},
|
||||
{
|
||||
id: "specialty", tag: "Specialty Beverages", price: "AED 22-25", period: "/cup", description: "Handcrafted drinks with unique flavor combinations", button: { text: "Explore Menu", href: "#menu" },
|
||||
featuresTitle: "Popular Choices:", features: [
|
||||
"Spanish Latte with condensed milk", "Campfire Mocha with toasted marshmallows", "Salted Caramel Budino", "Mint Condition specialty drinks"
|
||||
]
|
||||
id: "2", badge: "Pastries & Bites", price: "AED 15-28", subtitle: "Fresh pastries and light meals", buttons: [
|
||||
{ text: "Order", href: "#order" }
|
||||
],
|
||||
features: ["Fresh Croissants", "Grilled Halloumi", "Breakfast Options", "Seasonal Items"]
|
||||
},
|
||||
{
|
||||
id: "pastries", tag: "Pastries & Food", price: "AED 15-28", period: "/item", description: "Fresh baked goods and light meals to complement your coffee", button: { text: "View Full Menu", href: "#menu" },
|
||||
featuresTitle: "Selection:", features: [
|
||||
"Daily fresh pastries", "Croissants and muffins", "Grilled halloumi sandwiches", "Light breakfast options"
|
||||
]
|
||||
id: "3", badge: "Loyalty Program", price: "Exclusive", subtitle: "Rewards for our regular guests", buttons: [
|
||||
{ text: "Join Now", href: "#rewards" }
|
||||
],
|
||||
features: ["Earn Points", "Free Drinks", "Special Offers", "VIP Access"]
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "See Full Menu", href: "#menu" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardFour
|
||||
title="Signature Menu Items"
|
||||
description="Handpicked favorites from our menu showcasing the best of Caribou Coffee's crafted espresso and creative flavor combinations"
|
||||
title="Signature Picks"
|
||||
description="Handpicked favorites from our menu. These signature drinks showcase the best of Caribou Coffee's crafted espresso and creative flavor combinations."
|
||||
tag="Featured Items"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Campfire Mocha", price: "AED 24", variant: "With toasted marshmallows", imageSrc: "https://images.unsplash.com/photo-1578432291840-8d1c51dc1cfd?w=600&h=600&fit=crop", imageAlt: "Campfire Mocha with toasted marshmallows"
|
||||
id: "1", name: "Campfire Mocha", price: "AED 24", imageSrc: "https://images.unsplash.com/photo-1578432291840-8d1c51dc1cfd?w=600&h=600&fit=crop", imageAlt: "Campfire Mocha with toasted marshmallows", onProductClick: () => console.log('Product clicked')
|
||||
},
|
||||
{
|
||||
id: "2", name: "Spanish Latte", price: "AED 22", variant: "With condensed milk", imageSrc: "https://images.unsplash.com/photo-1512568400610-62da28bc8a13?w=600&h=600&fit=crop", imageAlt: "Spanish Latte with condensed milk"
|
||||
id: "2", name: "Spanish Latte", price: "AED 22", imageSrc: "https://images.unsplash.com/photo-1512568400610-62da28bc8a13?w=600&h=600&fit=crop", imageAlt: "Spanish Latte with condensed milk", onProductClick: () => console.log('Product clicked')
|
||||
},
|
||||
{
|
||||
id: "3", name: "Salted Caramel Budino", price: "AED 25", variant: "Espresso specialty", imageSrc: "https://images.unsplash.com/photo-1517668808822-9ebb02ae2a0e?w=600&h=600&fit=crop", imageAlt: "Salted Caramel Budino espresso"
|
||||
id: "3", name: "Salted Caramel Budino", price: "AED 25", imageSrc: "https://images.unsplash.com/photo-1517668808822-9ebb02ae2a0e?w=600&h=600&fit=crop", imageAlt: "Salted Caramel Budino espresso", onProductClick: () => console.log('Product clicked')
|
||||
},
|
||||
{
|
||||
id: "4", name: "Mint Condition Mocha", price: "AED 23", variant: "Refreshing specialty", imageSrc: "https://images.unsplash.com/photo-1495521821757-a1efb6729352?w=600&h=600&fit=crop", imageAlt: "Mint Condition Mocha specialty drink"
|
||||
id: "4", name: "Mint Condition Mocha", price: "AED 23", imageSrc: "https://images.unsplash.com/photo-1495521821757-a1efb6729352?w=600&h=600&fit=crop", imageAlt: "Mint Condition Mocha specialty drink", onProductClick: () => console.log('Product clicked')
|
||||
}
|
||||
]}
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
gridVariant="bento-grid"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "See Full Menu", href: "#menu-full" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardFourteen
|
||||
title="We're committed to sustainability and creating memorable experiences for our guests."
|
||||
tag="Impact"
|
||||
<MetricCardSeven
|
||||
title="By The Numbers"
|
||||
description="Trusted by thousands of café visitors who appreciate our atmosphere, quality, and location."
|
||||
tag="Our Impact"
|
||||
tagIcon={TrendingUp}
|
||||
tagAnimation="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "4.3★", description: "Average rating from 305+ satisfied visitors and coffee enthusiasts who love our park-view atmosphere and specialty drinks"
|
||||
id: "1", icon: Star,
|
||||
title: "Rating", value: "4.3", suffix: "Stars"
|
||||
},
|
||||
{
|
||||
id: "2", value: "15+ hrs", description: "Daily operating hours from 7 AM to 12 AM, ensuring we're here for your morning coffee, afternoon break, or evening relaxation"
|
||||
id: "2", icon: Users,
|
||||
title: "Reviews", value: "305+", suffix: "Visitors"
|
||||
},
|
||||
{
|
||||
id: "3", icon: Award,
|
||||
title: "Favorite", value: "10K+", suffix: "Regular Guests"
|
||||
}
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "View Reviews", href: "#testimonial" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardEleven
|
||||
title="Meet Our Team"
|
||||
description="The passionate people dedicated to crafting exceptional coffee experiences and warm hospitality at Caribou Coffee Taweah Park"
|
||||
tag="Our Crew"
|
||||
tagIcon={Sparkles}
|
||||
<TeamCardFive
|
||||
title="Our Expert Team"
|
||||
description="Meet the passionate people behind your perfect coffee experience at Caribou Coffee Taweah Park."
|
||||
tag="Meet The Team"
|
||||
tagIcon={Users}
|
||||
tagAnimation="slide-up"
|
||||
groups={[
|
||||
members={[
|
||||
{
|
||||
id: "management", groupTitle: "Management", members: [
|
||||
{
|
||||
id: "1", title: "Ahmed Al Mansoori", subtitle: "Café Manager", detail: "ahmed@cariboucoffee.ae", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=200&h=200&fit=crop", imageAlt: "Ahmed Al Mansoori"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Fatima Al Mazrouei", subtitle: "Operations Lead", detail: "fatima@cariboucoffee.ae", imageSrc: "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=200&h=200&fit=crop", imageAlt: "Fatima Al Mazrouei"
|
||||
}
|
||||
]
|
||||
id: "1", name: "Ahmed Al-Mansoori", role: "Café Manager", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=500&h=500&fit=crop", imageAlt: "Ahmed Al-Mansoori"
|
||||
},
|
||||
{
|
||||
id: "baristas", groupTitle: "Expert Baristas", members: [
|
||||
{
|
||||
id: "3", title: "Muhammad Hassan", subtitle: "Head Barista", detail: "muhammad@cariboucoffee.ae", imageSrc: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=200&h=200&fit=crop", imageAlt: "Muhammad Hassan"
|
||||
},
|
||||
{
|
||||
id: "4", title: "Leila Al Darei", subtitle: "Specialty Drink Specialist", detail: "leila@cariboucoffee.ae", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=200&h=200&fit=crop", imageAlt: "Leila Al Darei"
|
||||
}
|
||||
]
|
||||
id: "2", name: "Fatima Al-Kaabi", role: "Barista Lead", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=500&h=500&fit=crop", imageAlt: "Fatima Al-Kaabi"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Mohammed Al-Darmaki", role: "Operations", imageSrc: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=500&h=500&fit=crop", imageAlt: "Mohammed Al-Darmaki"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Sarita Sharma", role: "Customer Service", imageSrc: "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=500&h=500&fit=crop", imageAlt: "Sarita Sharma"
|
||||
}
|
||||
]}
|
||||
gridVariant="bento-grid"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Contact Us", href: "#contact" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonial" data-section="testimonial">
|
||||
<TestimonialCardTwo
|
||||
title="Customer Reviews"
|
||||
description="See what our visitors have to say about their Caribou Coffee experience at Taweah Park"
|
||||
tag="Guest Testimonials"
|
||||
<TestimonialCardOne
|
||||
title="What Our Guests Say"
|
||||
description="Join thousands of satisfied café visitors who love Caribou Coffee at Taweah Park."
|
||||
tag="Customer Reviews"
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Johnson", role: "Local Resident", testimonial: "The park views are absolutely stunning, and the coffee is exceptional. I've made this my favorite spot for morning meetings and afternoon relaxation.", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=200&h=200&fit=crop", imageAlt: "Sarah Johnson"
|
||||
id: "1", name: "Sarah Johnson", role: "Regular Visitor", company: "Al Ain", rating: 5,
|
||||
quote: "The perfect spot to work or relax with an amazing coffee and park views!", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=400&h=400&fit=crop", imageAlt: "Sarah Johnson"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Michael Chen", role: "Remote Worker", testimonial: "Perfect workspace with WiFi, comfortable seating, and excellent coffee. I practically live here during work hours. Highly recommended!", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=200&h=200&fit=crop", imageAlt: "Michael Chen"
|
||||
id: "2", name: "Michael Chen", role: "Coffee Enthusiast", company: "Al Ain", rating: 5,
|
||||
quote: "Specialty drinks crafted with real care. The baristas really know their craft.", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop", imageAlt: "Michael Chen"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Emma Davis", role: "Coffee Enthusiast", testimonial: "The specialty drinks are crafted with such care and attention to detail. Every visit is a delightful experience. Worth every AED!", imageSrc: "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=200&h=200&fit=crop", imageAlt: "Emma Davis"
|
||||
},
|
||||
{
|
||||
id: "4", name: "James Wilson", role: "Tourist", testimonial: "Found this gem while visiting the park. Amazing atmosphere, friendly staff, and the best coffee I've had in Al Ain. Definitely coming back!", imageSrc: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=200&h=200&fit=crop", imageAlt: "James Wilson"
|
||||
id: "3", name: "Emma Davis", role: "Business Owner", company: "Al Ain", rating: 5,
|
||||
quote: "My favorite café for meetings. Great atmosphere, excellent service, and stellar coffee.", imageSrc: "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=400&h=400&fit=crop", imageAlt: "Emma Davis"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Leave a Review", href: "#" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
title="Frequently Asked Questions"
|
||||
description="Find answers to common questions about Caribou Coffee at Taweah Park"
|
||||
tag="Help & Support"
|
||||
tagIcon={Camera}
|
||||
tag="Questions?"
|
||||
tagIcon={Clock}
|
||||
tagAnimation="slide-up"
|
||||
title="Frequently Asked Questions"
|
||||
description="Get answers to common questions about Caribou Coffee at Taweah Park."
|
||||
imageSrc="https://images.unsplash.com/photo-1511920170033-f8396924c348?w=800&h=600&fit=crop"
|
||||
imageAlt="Caribou Coffee interior"
|
||||
imagePosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What are your operating hours?", content: "We're open daily from 7:00 AM to 12:00 AM (midnight). This gives you plenty of time to visit us for morning coffee, afternoon breaks, or evening relaxation with friends and family."
|
||||
id: "1", question: "What are your hours?", answer: "We're open 7:00 AM – 12:00 AM daily (Monday–Thursday & Sunday). Friday–Saturday: 7:00 AM – 1:00 AM."
|
||||
},
|
||||
{
|
||||
id: "2", title: "Is parking available?", content: "Yes! Ample parking is available inside Towayya Park with easy access to our café. Look for the dedicated parking area near the main park entrance."
|
||||
id: "2", question: "Do you have parking?", answer: "Yes, ample parking is available at Towayya Park. Easy access from the main entrance."
|
||||
},
|
||||
{
|
||||
id: "3", title: "Do you offer WiFi?", content: "Absolutely! High-speed WiFi is complimentary for all our guests. It's perfect for working, studying, or staying connected while you enjoy your coffee."
|
||||
id: "3", question: "Can I reserve seating?", answer: "Yes! We accept reservations for groups. Call +971 3 755 6364 or use our online booking system."
|
||||
},
|
||||
{
|
||||
id: "4", title: "Can I reserve a table?", content: "We accept walk-ins, but for large group reservations, we recommend calling us at +971 3 755 6364 to ensure we have seating available."
|
||||
id: "4", question: "Do you offer WiFi?", answer: "Yes, high-speed WiFi is available throughout both levels of our café."
|
||||
},
|
||||
{
|
||||
id: "5", title: "What payment methods do you accept?", content: "We accept cash and all major credit/debit cards. Mobile payment options like Apple Pay and Google Pay are also available for your convenience."
|
||||
id: "5", question: "What payment methods do you accept?", answer: "We accept cash, credit cards, and mobile payments (Apple Pay, Google Pay, etc.)."
|
||||
},
|
||||
{
|
||||
id: "6", title: "Do you have vegetarian and vegan options?", content: "Yes! We offer several vegetarian options and vegan milk alternatives (almond, oat, coconut, and soy) for all our beverages. Ask our staff for recommendations."
|
||||
id: "6", question: "Is there an outdoor seating area?", answer: "Yes, we have beautiful outdoor seating with park views on our upper level."
|
||||
}
|
||||
]}
|
||||
imageSrc="https://images.unsplash.com/photo-1511920170033-f8396924c348?w=800&h=600&fit=crop"
|
||||
imageAlt="Café entrance and park views"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="left"
|
||||
faqsAnimation="slide-up"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Contact Us", href: "#contact" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
<ContactSplitForm
|
||||
tag="Get in Touch"
|
||||
tagIcon={MapPin}
|
||||
title="Visit Us Today"
|
||||
description="Stop by Caribou Coffee at Taweah Park for your next coffee break. Located inside Towayya Park with easy access, ample seating, and a welcoming atmosphere. Open daily for your convenience."
|
||||
description="Stop by Caribou Coffee at Taweah Park for your next coffee break. Located inside Towayya Park with easy access, ample seating, and a welcoming atmosphere."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="https://images.unsplash.com/photo-1511920170033-f8396924c348?w=800&h=600&fit=crop"
|
||||
imageAlt="Exterior park entrance"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Subscribe to Offers"
|
||||
termsText="We'll notify you about new seasonal drinks and special offers. We respect your privacy."
|
||||
formFields={[
|
||||
{ id: "name", label: "Name", type: "text", placeholder: "Your name" },
|
||||
{ id: "email", label: "Email", type: "email", placeholder: "your@email.com" },
|
||||
{ id: "phone", label: "Phone", type: "tel", placeholder: "+971 ..." },
|
||||
{ id: "message", label: "Message", type: "textarea", placeholder: "Tell us how we can help..." }
|
||||
]}
|
||||
buttonText="Send Message"
|
||||
successMessage="Thank you! We'll get back to you soon."
|
||||
tagAnimation="slide-up"
|
||||
onSubmit={(email: string) => console.log('Email submitted:', email)}
|
||||
onSubmit={(data) => console.log('Form submitted:', data)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
title="Trusted by Thousands"
|
||||
description="Join our growing community of coffee lovers and park visitors who choose Caribou Coffee for exceptional quality and atmosphere"
|
||||
tag="Community"
|
||||
tagIcon={Sparkles}
|
||||
description="Join visitors who choose Caribou Coffee at Taweah Park for their coffee experience."
|
||||
tag="Our Community"
|
||||
tagIcon={Users}
|
||||
tagAnimation="slide-up"
|
||||
names={[
|
||||
"Local Residents", "Remote Workers", "Coffee Enthusiasts", "Tourists & Visitors", "Park Regulars", "Business Professionals"
|
||||
"Al Ain Community", "Coffee Enthusiasts", "Business Professionals", "Park Visitors", "Students", "Remote Workers"
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
speed={40}
|
||||
showCard={true}
|
||||
buttons={[
|
||||
{ text: "Join Us", href: "#menu" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
<FooterMedia
|
||||
logoText="Caribou Coffee"
|
||||
imageSrc="https://images.unsplash.com/photo-1511920170033-f8396924c348?w=800&h=600&fit=crop"
|
||||
imageAlt="Caribou Coffee Taweah Park"
|
||||
imagePosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
title: "Navigation", items: [
|
||||
{ label: "Menu", href: "#menu" },
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Reviews", href: "#testimonial" },
|
||||
@@ -351,94 +396,59 @@ export default function LandingPage() {
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Get Directions", href: "https://maps.google.com/?q=24.24235,55.700408" },
|
||||
title: "Location", items: [
|
||||
{ label: "Taweah Park, Al Ain", href: "https://maps.google.com/?q=24.24235,55.700408" },
|
||||
{ label: "Call: +971 3 755 6364", href: "tel:+97137556364" },
|
||||
{ label: "Location: Taweah Park", href: "https://maps.google.com/?q=24.24235,55.700408" },
|
||||
{ label: "Hours: 7 AM - 12 AM", href: "#" }
|
||||
{ label: "Hours & Directions", href: "#map" },
|
||||
{ label: "Rewards Program", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
title: "Company", items: [
|
||||
{ label: "About Caribou", href: "#" },
|
||||
{ label: "Sustainability", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Privacy Policy", href: "/privacy" }
|
||||
{ label: "Contact Us", href: "#contact" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 Caribou Coffee. All rights reserved."
|
||||
onPrivacyClick={() => console.log('Privacy clicked')}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="privacy" data-section="privacy" style={{ display: 'none' }}>
|
||||
<div id="privacy" data-section="privacy">
|
||||
<LegalSection
|
||||
layout="page"
|
||||
layout="section"
|
||||
title="Privacy Policy"
|
||||
subtitle="Last updated: January 2025"
|
||||
sections={[
|
||||
{
|
||||
heading: "1. Information We Collect", content: [
|
||||
{
|
||||
type: "paragraph", text: "Caribou Coffee collects information you provide directly to us, including:"
|
||||
},
|
||||
{
|
||||
type: "list", items: [
|
||||
"Email addresses for newsletter subscriptions", "Contact information for reservations and inquiries", "Payment information for purchases", "Feedback and reviews about our services"
|
||||
]
|
||||
},
|
||||
{
|
||||
type: "paragraph", text: "We also collect information automatically when you visit our location or website, including device information and usage patterns."
|
||||
}
|
||||
{ type: "paragraph", text: "We collect information you provide directly to us, including your name, email address, phone number, and any messages you send through our contact form." },
|
||||
{ type: "list", items: ["Contact information", "Messages and inquiries", "Usage information through cookies"] }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "2. How We Use Your Information", content: [
|
||||
{
|
||||
type: "paragraph", text: "We use the information we collect to:"
|
||||
},
|
||||
{
|
||||
type: "list", items: [
|
||||
"Provide and improve our services", "Send newsletters and promotional offers", "Process reservations and orders", "Respond to your inquiries and feedback", "Ensure the security and functionality of our services"
|
||||
]
|
||||
}
|
||||
{ type: "paragraph", text: "We use the information we collect to:" },
|
||||
{ type: "list", items: ["Respond to your inquiries", "Send you updates about our offers", "Improve our services", "Comply with legal obligations"] }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "3. Data Security", content: [
|
||||
{
|
||||
type: "paragraph", text: "We implement appropriate technical and organizational measures to protect your personal information against unauthorized access, alteration, disclosure, or destruction. However, no method of transmission over the internet is 100% secure."
|
||||
}
|
||||
heading: "3. Data Protection", content: [
|
||||
{ type: "paragraph", text: "Your privacy is important to us. We implement appropriate technical and organizational measures to protect your personal data against unauthorized access, alteration, disclosure, or destruction." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "4. Third-Party Sharing", content: [
|
||||
{
|
||||
type: "paragraph", text: "We do not sell, trade, or rent your personal information to third parties. We may share information with service providers who assist us in operating our website and conducting our business, subject to confidentiality agreements."
|
||||
}
|
||||
heading: "4. Your Rights", content: [
|
||||
{ type: "paragraph", text: "You have the right to:" },
|
||||
{ type: "list", items: ["Access your personal data", "Request correction of inaccurate data", "Request deletion of your data", "Opt-out of marketing communications"] }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "5. Your Rights", content: [
|
||||
{
|
||||
type: "paragraph", text: "You have the right to:"
|
||||
},
|
||||
{
|
||||
type: "list", items: [
|
||||
"Access the personal information we hold about you", "Request correction of inaccurate information", "Request deletion of your information", "Unsubscribe from marketing communications at any time"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "6. Contact Us", content: [
|
||||
{
|
||||
type: "paragraph", text: "If you have questions about this Privacy Policy or our privacy practices, please contact us at:"
|
||||
},
|
||||
{
|
||||
type: "list", items: [
|
||||
"Phone: +971 3 755 6364", "Email: privacy@cariboucoffee.ae", "Location: Taweah Park, Al Ain, UAE"
|
||||
]
|
||||
}
|
||||
heading: "5. Contact Us", content: [
|
||||
{ type: "paragraph", text: "If you have questions about this Privacy Policy or our privacy practices, please contact us at +971 3 755 6364 or through our contact form." }
|
||||
]
|
||||
}
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user