251 lines
11 KiB
TypeScript
251 lines
11 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import ContactText from '@/components/sections/contact/ContactText';
|
|
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
|
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
|
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
|
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
|
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
|
import TextAbout from '@/components/sections/about/TextAbout';
|
|
import { Award, Clock, Flame, Heart, Star, ChefHat } from "lucide-react";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="icon-arrow"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="soft"
|
|
contentWidth="mediumLarge"
|
|
sizing="mediumSizeLargeTitles"
|
|
background="circleGradient"
|
|
cardStyle="gradient-mesh"
|
|
primaryButtonStyle="primary-glow"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="bold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleFullscreen
|
|
navItems={[
|
|
{
|
|
name: "Home", id: "hero"},
|
|
{
|
|
name: "About", id: "about"},
|
|
{
|
|
name: "Menu", id: "products"},
|
|
{
|
|
name: "Contact", id: "contact"},
|
|
]}
|
|
brandName="Local Hot Bread"
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroBillboardCarousel
|
|
background={{
|
|
variant: "gradient-bars"}}
|
|
title="Fresh, Authentic Iranian Bread"
|
|
description="Hand-baked daily in Totem Lake. Experience the tradition of authentic Barbari and Lavash, straight from our oven to your table."
|
|
tag="Daily Fresh"
|
|
buttons={[
|
|
{
|
|
text: "View Our Menu", href: "#products"},
|
|
]}
|
|
mediaItems={[
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/tandir-chorak-traditional-azeri-style-cooked-bread-special-oven-side-view_141793-4153.jpg?_wi=1", imageAlt: "Fresh Barbari bread"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-pouring-dough_23-2150014876.jpg?_wi=1", imageAlt: "Traditional oven baking"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/soft-pie-slices-with-black-sultana-wooden-board_114579-61974.jpg?_wi=1", imageAlt: "Warm golden crust"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/chef-dusting-flour-bread-dough_23-2148742192.jpg", imageAlt: "Artisanal dough preparation"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/spanich-sandwich-shop-window_1398-4866.jpg", imageAlt: "Assorted fresh breads"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/waitress-serving-plate-cupcake-customer_1170-658.jpg", imageAlt: "Welcoming bakery counter"},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<TextAbout
|
|
useInvertedBackground={false}
|
|
title="Tradition in Every Bite"
|
|
buttons={[
|
|
{
|
|
text: "Visit Us", href: "#contact"},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="products" data-section="products">
|
|
<ProductCardOne
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
gridVariant="uniform-all-items-equal"
|
|
useInvertedBackground={false}
|
|
products={[
|
|
{
|
|
id: "p1", name: "Barbari Bread", price: "$5.00", imageSrc: "http://img.b2bpic.net/free-photo/wooden-board-crispy-square-rice-waffles_114579-63741.jpg"},
|
|
{
|
|
id: "p2", name: "Lavash Bread", price: "$4.00", imageSrc: "http://img.b2bpic.net/free-photo/azerbaijani-gutab-stuffed-flatbreads-with-minced-meat-herbs_140725-1437.jpg"},
|
|
{
|
|
id: "p3", name: "Sangak Bread", price: "$6.00", imageSrc: "http://img.b2bpic.net/free-photo/handmade-round-bread-bun-wooden-platter_114579-19868.jpg"},
|
|
{
|
|
id: "p4", name: "Taftoon Bread", price: "$4.50", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-poppy-seeds-baguette_141793-5271.jpg"},
|
|
{
|
|
id: "p5", name: "Sweet Bread", price: "$7.00", imageSrc: "http://img.b2bpic.net/free-photo/homemade-delicious-zebra-marble-cake_114579-19429.jpg"},
|
|
{
|
|
id: "p6", name: "Sesame Ring", price: "$3.50", imageSrc: "http://img.b2bpic.net/free-photo/bagels-cinnamon-sticks-wooden-board-marble-surface_114579-48005.jpg"},
|
|
]}
|
|
title="Our Artisanal Breads"
|
|
description="Authentic recipes, traditional methods."
|
|
/>
|
|
</div>
|
|
|
|
<div id="features" data-section="features">
|
|
<FeatureCardTen
|
|
animationType="slide-up"
|
|
textboxLayout="split"
|
|
useInvertedBackground={false}
|
|
features={[
|
|
{
|
|
title: "Fresh Daily", description: "Baked fresh every single morning.", items: [
|
|
{
|
|
text: "Warm oven", icon: Flame,
|
|
},
|
|
],
|
|
reverse: false,
|
|
media: {
|
|
imageSrc: "http://img.b2bpic.net/free-photo/tandir-chorak-traditional-azeri-style-cooked-bread-special-oven-side-view_141793-4153.jpg?_wi=2", imageAlt: "Variety of fresh fragrant bread with bowl of barley"},
|
|
},
|
|
{
|
|
title: "Authentic Taste", description: "Original recipes from Iran.", items: [
|
|
{
|
|
text: "Traditional", icon: ChefHat,
|
|
},
|
|
],
|
|
reverse: true,
|
|
media: {
|
|
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-pouring-dough_23-2150014876.jpg?_wi=2", imageAlt: "Senior bakery man sifting wheat flour"},
|
|
},
|
|
{
|
|
title: "Local Favorite", description: "Serving the Kirkland community.", items: [
|
|
{
|
|
text: "Quality", icon: Heart,
|
|
},
|
|
],
|
|
reverse: false,
|
|
media: {
|
|
imageSrc: "http://img.b2bpic.net/free-photo/soft-pie-slices-with-black-sultana-wooden-board_114579-61974.jpg?_wi=2", imageAlt: "Bakery small business concept"},
|
|
},
|
|
]}
|
|
title="Why Choose Us?"
|
|
description="We are committed to quality and tradition."
|
|
/>
|
|
</div>
|
|
|
|
<div id="metrics" data-section="metrics">
|
|
<MetricCardOne
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
gridVariant="uniform-all-items-equal"
|
|
useInvertedBackground={false}
|
|
metrics={[
|
|
{
|
|
id: "m1", value: "68+", title: "Reviews", description: "Satisfied local customers", icon: Star,
|
|
},
|
|
{
|
|
id: "m2", value: "5.0", title: "Rating", description: "Average customer rating", icon: Award,
|
|
},
|
|
{
|
|
id: "m3", value: "100%", title: "Freshness", description: "Baked daily on-site", icon: Clock,
|
|
},
|
|
]}
|
|
title="Bakery at a Glance"
|
|
description="Serving the community with passion."
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardTwo
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
testimonials={[
|
|
{
|
|
id: "t1", name: "Hamed E", role: "Local Guide", testimonial: "The Barbari bread is very authentic in taste, smell and texture.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-showing-bag-friend_23-2147950284.jpg"},
|
|
{
|
|
id: "t2", name: "Hosein Khazaei", role: "Local Guide", testimonial: "Local Hot Bread is such a welcoming place.", imageSrc: "http://img.b2bpic.net/free-photo/very-good-smiling-satisfied-woman-showing-thumbs-up-near-white-teeth-smile-give-approval-recommend-smth-excellent-standing-white_176420-40928.jpg"},
|
|
{
|
|
id: "t3", name: "Ratish", role: "Local Guide", testimonial: "Everything bread! I have been going past this bakery and always wanted to check out.", imageSrc: "http://img.b2bpic.net/free-photo/casual-smile-street-style-background-spring_1139-777.jpg"},
|
|
{
|
|
id: "t4", name: "Sarah K", role: "Customer", testimonial: "So thankful for the hard work and service.", imageSrc: "http://img.b2bpic.net/free-photo/teen-age-youth-style-self-expression-concept-portrait-positive-happy-teenage-girl-with-bob-pinkish-hairstyle-facial-piercing-relaxing-indoors_343059-3781.jpg"},
|
|
{
|
|
id: "t5", name: "David W", role: "Customer", testimonial: "A good deal for the price and delicious.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-waiter-holding-basket-bread_1170-596.jpg"},
|
|
]}
|
|
title="Kind Words from Neighbors"
|
|
description="Hear what our regulars have to say."
|
|
/>
|
|
</div>
|
|
|
|
<div id="faq" data-section="faq">
|
|
<FaqSplitText
|
|
useInvertedBackground={false}
|
|
faqs={[
|
|
{
|
|
id: "f1", title: "What are your hours?", content: "We open at 9:00 AM daily."},
|
|
{
|
|
id: "f2", title: "Do you offer dine-in?", content: "Yes, we have seating available."},
|
|
{
|
|
id: "f3", title: "Where are you located?", content: "12555 116th Ave NE, Kirkland, WA."},
|
|
]}
|
|
sideTitle="Frequently Asked"
|
|
faqsAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactText
|
|
useInvertedBackground={false}
|
|
background={{
|
|
variant: "gradient-bars"}}
|
|
text="Visit us in Totem Lake West for fresh bread today! Call us at (253) 289-9340."
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterMedia
|
|
imageSrc="http://img.b2bpic.net/free-photo/high-angle-doughnut-with-basked-apples_23-2148368242.jpg"
|
|
logoText="Local Hot Bread"
|
|
columns={[
|
|
{
|
|
title: "Navigation", items: [
|
|
{
|
|
label: "Home", href: "#hero"},
|
|
{
|
|
label: "Menu", href: "#products"},
|
|
],
|
|
},
|
|
{
|
|
title: "Contact", items: [
|
|
{
|
|
label: "(253) 289-9340", href: "tel:2532899340"},
|
|
{
|
|
label: "Location", href: "#"},
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|