Merge version_3 into main #8
264
src/app/page.tsx
264
src/app/page.tsx
@@ -1,264 +0,0 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Sparkles, Heart, Trophy, Star, TrendingUp, Users, Check, Award, Linkedin, Instagram, Globe, Facebook, MessageCircle, HelpCircle } from 'lucide-react';
|
||||
|
||||
export default function PrimeTimeBakery() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="compact"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
brandName="Prime Time Bakery"
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
bottomLeftText="International City"
|
||||
bottomRightText="Order via WhatsApp"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
title="Fresh Happiness, Baked Daily"
|
||||
description="Prime Time Bakery serves perfectly balanced, high-quality bread, pastries, and cakes made fresh every morning in International City. Loved by locals for clean ambiance, friendly staff, and flavors that keep you coming back."
|
||||
tag="Premium Local Bakery"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "canvas-reveal" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-pastry-chef-preparing-food_23-2149038997.jpg"
|
||||
imageAlt="Fresh baked goods display at Prime Time Bakery"
|
||||
buttons={[
|
||||
{ text: "Order Now via WhatsApp", href: "https://wa.me/971" },
|
||||
{ text: "Visit Us Today", href: "#contact" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
title="Crafted with Care, Baked Fresh Daily"
|
||||
description="Every item at Prime Time Bakery is made with premium ingredients, attention to detail, and a passion for excellence. From sourdough to celebration cakes, we create moments of joy through authentic, flavorful baking."
|
||||
tag="Our Story"
|
||||
tagIcon={Heart}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-woman-working-bakery_23-2150273146.jpg"
|
||||
imageAlt="Prime Time Bakery professional team in kitchen"
|
||||
buttons={[
|
||||
{ text: "Learn More", href: "#testimonials" },
|
||||
{ text: "View Products", href: "#products" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardTwo
|
||||
title="Our Signature Products"
|
||||
description="Discover our most loved creations, handcrafted with precision and the finest ingredients for maximum freshness and taste."
|
||||
tag="Best Sellers"
|
||||
tagIcon={Trophy}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[{ text: "View All Products", href: "#" }]}
|
||||
buttonAnimation="slide-up"
|
||||
products={[
|
||||
{
|
||||
id: "1", brand: "Prime Time Bakery", name: "French Butter Croissant", price: "AED 12", rating: 5,
|
||||
reviewCount: "487", imageSrc: "http://img.b2bpic.net/free-photo/croissant-knife-cup-coffee_1220-100.jpg", imageAlt: "Golden butter croissant"
|
||||
},
|
||||
{
|
||||
id: "2", brand: "Prime Time Bakery", name: "Artisan Sourdough Loaf", price: "AED 18", rating: 5,
|
||||
reviewCount: "392", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-delicious-bread-with-copy-space_23-2148648799.jpg", imageAlt: "Rustic artisan sourdough"
|
||||
},
|
||||
{
|
||||
id: "3", brand: "Prime Time Bakery", name: "Custom Celebration Cake", price: "AED 85+", rating: 5,
|
||||
reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-photo/front-view-women-celebrating-birthday_23-2150040313.jpg", imageAlt: "Premium celebration cake"
|
||||
}
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
carouselMode="buttons"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFive
|
||||
title="What Our Customers Love"
|
||||
description="Real experiences from real customers who have made Prime Time Bakery part of their daily lives."
|
||||
tag="Customer Stories"
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Fatima Al-Mansouri, Health-Conscious Professional", date: "Date: 15 February 2025", title: "Finally found quality without the guilt!", quote: "Prime Time Bakery's balanced recipes are a game-changer. I love that their pastries satisfy my cravings without being overly sweet. The fresh ingredients really make a difference, and I appreciate the transparency about what goes into each item.", tag: "Premium Member", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-confident-businessman-black-wall_176420-3459.jpg", avatarAlt: "Fatima Al-Mansouri", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-confident-businessman-black-wall_176420-3459.jpg?_wi=1"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Ahmed Hassan, Family Event Planner", date: "Date: 12 February 2025", title: "Perfect for every celebration!", quote: "We've ordered custom cakes from Prime Time for three family events now. Every single time, the quality, presentation, and taste have been flawless. Their team is professional yet warm—exactly what we needed for our special occasions.", tag: "Event Regular", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-businessman-with-tie_1098-2867.jpg", avatarAlt: "Ahmed Hassan", imageSrc: "http://img.b2bpic.net/free-photo/close-up-businessman-with-tie_1098-2867.jpg?_wi=1"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Layla Khalid, Daily Commuter", date: "Date: 10 February 2025", title: "My morning won't be complete without their croissants!", quote: "I grab a croissant and espresso from Prime Time every weekday before heading to the office. They're always warm, fresh, and absolutely delicious. The staff knows my order by heart now, which makes my morning routine even better.", tag: "Daily Customer", avatarSrc: "http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg", avatarAlt: "Layla Khalid", imageSrc: "http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg?_wi=1"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Mohammed Al-Qadi, Neighborhood Local", date: "Date: 8 February 2025", title: "Best bakery in International City, hands down!", quote: "The ambiance is clean and welcoming, the staff are genuinely friendly, and the flavors keep me coming back. I've recommended Prime Time to every colleague and friend. This is where quality meets warmth.", tag: "Loyal Advocate", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-executive-daydreaming_1139-146.jpg", avatarAlt: "Mohammed Al-Qadi", imageSrc: "http://img.b2bpic.net/free-photo/close-up-executive-daydreaming_1139-146.jpg?_wi=1"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Sara Al-Marri, Office Manager", date: "Date: 5 February 2025", title: "Perfect for office meetings and celebrations!", quote: "We now order pastry platters from Prime Time for all our team meetings. The variety, freshness, and presentation are always impeccable. Our team loves it, and it's become a tradition at our office.", tag: "Corporate Partner", avatarSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-blue-shirt_23-2148095792.jpg", avatarAlt: "Sara Al-Marri", imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-blue-shirt_23-2148095792.jpg"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Rashid Al-Mansouri, Cafe Owner", date: "Date: 2 February 2025", title: "Reliable supplier and true partners in business!", quote: "We partner with Prime Time for our bakery needs, and they consistently deliver premium products on time. Their professionalism and product quality give us confidence to recommend them to our customers.", tag: "B2B Partner", avatarSrc: "http://img.b2bpic.net/free-photo/african-man-black-suit_1157-46903.jpg", avatarAlt: "Rashid Al-Mansouri", imageSrc: "http://img.b2bpic.net/free-photo/african-man-black-suit_1157-46903.jpg"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardOne
|
||||
title="Trusted by Thousands"
|
||||
description="Numbers that reflect our commitment to quality, freshness, and customer satisfaction every single day."
|
||||
tag="Our Impact"
|
||||
tagIcon={TrendingUp}
|
||||
tagAnimation="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "2500", title: "Happy Customers", description: "Served across International City and beyond", icon: Users
|
||||
},
|
||||
{
|
||||
id: "2", value: "99", title: "% Freshness", description: "Baked fresh daily, never day-old", icon: Check
|
||||
},
|
||||
{
|
||||
id: "3", value: "15+", title: "Signature Items", description: "From breads to celebration cakes", icon: Award
|
||||
}
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
carouselMode="buttons"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardTwo
|
||||
title="Meet Our Passionate Team"
|
||||
description="The talented bakers and hospitality professionals who bring fresh happiness to life every morning."
|
||||
tag="Our Family"
|
||||
tagIcon={Heart}
|
||||
tagAnimation="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
members={[
|
||||
{
|
||||
id: "1", name: "Fatima Al-Qadi", role: "Founder & Head Baker", description: "20+ years of baking experience. Passionate about traditional techniques combined with modern innovation.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-confident-businessman-black-wall_176420-3459.jpg?_wi=2", imageAlt: "Fatima Al-Qadi", socialLinks: [
|
||||
{ icon: Linkedin, url: "https://linkedin.com" },
|
||||
{ icon: Instagram, url: "https://instagram.com" }
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "2", name: "Hassan Mansouri", role: "Lead Pastry Chef", description: "Trained in Paris. Specializes in French pastries and custom celebration cakes with artistic flair.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-businessman-with-tie_1098-2867.jpg?_wi=2", imageAlt: "Hassan Mansouri", socialLinks: [
|
||||
{ icon: Linkedin, url: "https://linkedin.com" },
|
||||
{ icon: Globe, url: "https://example.com" }
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "3", name: "Amira Khalid", role: "Hospitality Manager", description: "Creates warm, welcoming experiences. Ensures every customer feels valued and appreciated.", imageSrc: "http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg?_wi=2", imageAlt: "Amira Khalid", socialLinks: [
|
||||
{ icon: Linkedin, url: "https://linkedin.com" },
|
||||
{ icon: Instagram, url: "https://instagram.com" }
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "4", name: "Omar Al-Hashimi", role: "Quality Control Specialist", description: "Meticulous attention to every detail. Ensures every item meets Prime Time's high standards.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-executive-daydreaming_1139-146.jpg?_wi=2", imageAlt: "Omar Al-Hashimi", socialLinks: [
|
||||
{ icon: Linkedin, url: "https://linkedin.com" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={true}
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
carouselMode="buttons"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
title="Frequently Asked Questions"
|
||||
description="Find answers to common questions about our products, ordering process, and service."
|
||||
tag="Support"
|
||||
tagIcon={HelpCircle}
|
||||
tagAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "How do I place an order via WhatsApp?", content: "Simply save our WhatsApp number, click the 'Order Now via WhatsApp' button on our website, and send us your order details. We'll confirm availability, pricing, and delivery or pickup time. It's quick, convenient, and personal!"
|
||||
},
|
||||
{
|
||||
id: "2", title: "What makes your baked goods fresh?", content: "Everything is baked fresh every morning in our on-site kitchen using premium ingredients. We don't freeze or use day-old products. Each item is crafted to order or prepared fresh daily based on predicted demand."
|
||||
},
|
||||
{
|
||||
id: "3", title: "Do you offer custom cakes for events?", content: "Yes! We specialize in custom celebration cakes for weddings, birthdays, corporate events, and more. Contact us via WhatsApp or visit us in person to discuss your vision, and we'll create something beautiful and delicious."
|
||||
},
|
||||
{
|
||||
id: "4", title: "Are your products suitable for dietary preferences?", content: "We offer a range of items, including options for those seeking balanced nutrition. Please inquire about specific dietary needs (gluten-free, vegan, etc.) via WhatsApp or in-store. We're always happy to explore custom solutions."
|
||||
},
|
||||
{
|
||||
id: "5", title: "What are your hours of operation?", content: "We're open daily from 6 AM to 8 PM (hours may vary on holidays). You can order anytime via WhatsApp, and we'll confirm the best pickup or delivery time for you. Visit us in International City for the full Prime Time experience."
|
||||
},
|
||||
{
|
||||
id: "6", title: "Do you offer wholesale or B2B services?", content: "Yes! We partner with cafes, restaurants, and offices for regular supply. For wholesale inquiries, please WhatsApp us or visit our location to discuss volume pricing, delivery schedules, and custom menu options."
|
||||
}
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-bakery-seller-with-arms-crossed-standing-front-shelf-full-bred-bagels-pastry_342744-1060.jpg"
|
||||
imageAlt="Prime Time Bakery warm interior"
|
||||
mediaAnimation="slide-up"
|
||||
faqsAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
mediaPosition="left"
|
||||
animationType="smooth"
|
||||
showCard={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<FooterCard
|
||||
logoText="Prime Time Bakery"
|
||||
copyrightText="© 2025 Prime Time Bakery. Fresh happiness, baked daily. International City, UAE."
|
||||
socialLinks={[
|
||||
{ icon: Instagram, href: "https://instagram.com/primetimebakery", ariaLabel: "Prime Time Bakery Instagram" },
|
||||
{ icon: Facebook, href: "https://facebook.com/primetimebakery", ariaLabel: "Prime Time Bakery Facebook" },
|
||||
{ icon: MessageCircle, href: "https://wa.me/971", ariaLabel: "Prime Time Bakery WhatsApp" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user