Update src/app/page.tsx
This commit is contained in:
386
src/app/page.tsx
386
src/app/page.tsx
@@ -17,282 +17,132 @@ export default function LandingPage() {
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Our Story",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Visit",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="Brew & Bean"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Our Story", id: "about" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Visit", id: "contact" },
|
||||
]}
|
||||
brandName="Brew & Bean"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
title="Awaken Your Senses with Every Sip"
|
||||
description="Experience the rich, aromatic journey of hand-roasted coffee beans, crafted with passion to deliver the perfect brew right to your cup."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/beauty-style-fashion-femininity-concept-positive-beautiful-young-european-woman-blue-shirt-looking-camera-with-broad-happy-smile-being-good-mood-kitchen-interior-background_343059-2087.jpg",
|
||||
alt: "Customer 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/takeaway-cafe-concept-beautiful-feminine-woman-smiling-holding-cup-coffee-posing-against-beig_1258-119209.jpg",
|
||||
alt: "Customer 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/stylish-businessman-working-office_1157-21026.jpg",
|
||||
alt: "Customer 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/stylish-good-looking-office-lady-enjoying-hot-coffee-holding-cup-sitttin-cafe-alone_197531-22842.jpg",
|
||||
alt: "Customer 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/beauty-style-fashion-femininity-concept-positive-beautiful-young-european-woman-blue-shirt-looking-camera-with-broad-happy-smile-being-good-mood-kitchen-interior-background_343059-2087.jpg",
|
||||
alt: "Customer 5",
|
||||
},
|
||||
]}
|
||||
avatarText="Loved by over 10,000 coffee enthusiasts"
|
||||
buttons={[
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
text: "Visit Us",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Ethically Sourced",
|
||||
icon: Leaf,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Small Batch Roasted",
|
||||
icon: Flame,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Artisan Brewing",
|
||||
icon: Coffee,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Fresh Daily",
|
||||
icon: Clock,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Community Focused",
|
||||
icon: Heart,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{ variant: "plain" }}
|
||||
title="Awaken Your Senses with Every Sip"
|
||||
description="Experience the rich, aromatic journey of hand-roasted coffee beans, crafted with passion to deliver the perfect brew right to your cup."
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/beauty-style-fashion-femininity-concept-positive-beautiful-young-european-woman-blue-shirt-looking-camera-with-broad-happy-smile-being-good-mood-kitchen-interior-background_343059-2087.jpg", alt: "Customer 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/takeaway-cafe-concept-beautiful-feminine-woman-smiling-holding-cup-coffee-posing-against-beig_1258-119209.jpg", alt: "Customer 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/stylish-businessman-working-office_1157-21026.jpg", alt: "Customer 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/stylish-good-looking-office-lady-enjoying-hot-coffee-holding-cup-sitttin-cafe-alone_197531-22842.jpg", alt: "Customer 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/beauty-style-fashion-femininity-concept-positive-beautiful-young-european-woman-blue-shirt-looking-camera-with-broad-happy-smile-being-good-mood-kitchen-interior-background_343059-2087.jpg", alt: "Customer 5" },
|
||||
]}
|
||||
avatarText="Loved by over 10,000 coffee enthusiasts"
|
||||
buttons={[{ text: "View Menu", href: "#menu" }, { text: "Visit Us", href: "#contact" }]}
|
||||
buttonAnimation="slide-up"
|
||||
marqueeItems={[
|
||||
{ type: "text-icon", text: "Ethically Sourced", icon: Leaf },
|
||||
{ type: "text-icon", text: "Small Batch Roasted", icon: Flame },
|
||||
{ type: "text-icon", text: "Artisan Brewing", icon: Coffee },
|
||||
{ type: "text-icon", text: "Fresh Daily", icon: Clock },
|
||||
{ type: "text-icon", text: "Community Focused", icon: Heart },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
useInvertedBackground={true}
|
||||
title="From Seed to Sip"
|
||||
description="Our journey begins in the high-altitude regions where the finest Arabica beans are nurtured. We roast them daily in small batches, ensuring every cup captures the essence of origin and quality."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/fingers-making-heart-gap-coffee-beans_176474-8945.jpg"
|
||||
imageAlt="Coffee beans roasted"
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
useInvertedBackground={true}
|
||||
title="From Seed to Sip"
|
||||
description="Our journey begins in the high-altitude regions where the finest Arabica beans are nurtured. We roast them daily in small batches, ensuring every cup captures the essence of origin and quality."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/fingers-making-heart-gap-coffee-beans_176474-8945.jpg"
|
||||
imageAlt="Coffee beans roasted"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "Brew & Bean",
|
||||
name: "Velvet Latte",
|
||||
price: "$5.50",
|
||||
rating: 5,
|
||||
reviewCount: "120",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-with-bowl-with-cookies-teaspoon_1232-904.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "Brew & Bean",
|
||||
name: "Signature Drip",
|
||||
price: "$4.00",
|
||||
rating: 5,
|
||||
reviewCount: "85",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/roasted-background-bean-black-coffee_1303-1924.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "Brew & Bean",
|
||||
name: "Buttery Croissant",
|
||||
price: "$3.50",
|
||||
rating: 4,
|
||||
reviewCount: "210",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-chocolate-roll_23-2150645419.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
brand: "Brew & Bean",
|
||||
name: "Cold Brew",
|
||||
price: "$4.50",
|
||||
rating: 5,
|
||||
reviewCount: "95",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-with-bowl-with-cookies-teaspoon_1232-904.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
brand: "Brew & Bean",
|
||||
name: "Almond Muffin",
|
||||
price: "$3.75",
|
||||
rating: 4,
|
||||
reviewCount: "60",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-chocolate-roll_23-2150645419.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
title="Our Signature Brews"
|
||||
description="Explore our carefully curated selection of coffee and artisanal treats, designed to complement your daily caffeine ritual."
|
||||
/>
|
||||
</div>
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", brand: "Brew & Bean", name: "Velvet Latte", price: "$5.50", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-with-bowl-with-cookies-teaspoon_1232-904.jpg" },
|
||||
{ id: "p2", brand: "Brew & Bean", name: "Signature Drip", price: "$4.00", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/roasted-background-bean-black-coffee_1303-1924.jpg" },
|
||||
{ id: "p3", brand: "Brew & Bean", name: "Buttery Croissant", price: "$3.50", rating: 4, reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-chocolate-roll_23-2150645419.jpg" },
|
||||
{ id: "p4", brand: "Brew & Bean", name: "Cold Brew", price: "$4.50", rating: 5, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-with-bowl-with-cookies-teaspoon_1232-904.jpg" },
|
||||
{ id: "p5", brand: "Brew & Bean", name: "Almond Muffin", price: "$3.75", rating: 4, reviewCount: "60", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-chocolate-roll_23-2150645419.jpg" },
|
||||
]}
|
||||
title="Our Signature Brews"
|
||||
description="Explore our carefully curated selection of coffee and artisanal treats, designed to complement your daily caffeine ritual."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFifteen
|
||||
useInvertedBackground={true}
|
||||
testimonial="The best coffee shop in town! The atmosphere is perfect for working or catching up with friends, and the coffee is consistently excellent."
|
||||
rating={5}
|
||||
author="Sarah Johnson"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/beauty-style-fashion-femininity-concept-positive-beautiful-young-european-woman-blue-shirt-looking-camera-with-broad-happy-smile-being-good-mood-kitchen-interior-background_343059-2087.jpg",
|
||||
alt: "Sarah J.",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/takeaway-cafe-concept-beautiful-feminine-woman-smiling-holding-cup-coffee-posing-against-beig_1258-119209.jpg",
|
||||
alt: "User 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/stylish-businessman-working-office_1157-21026.jpg",
|
||||
alt: "User 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/stylish-good-looking-office-lady-enjoying-hot-coffee-holding-cup-sitttin-cafe-alone_197531-22842.jpg",
|
||||
alt: "User 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/beauty-style-fashion-femininity-concept-positive-beautiful-young-european-woman-blue-shirt-looking-camera-with-broad-happy-smile-being-good-mood-kitchen-interior-background_343059-2087.jpg",
|
||||
alt: "User 5",
|
||||
},
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFifteen
|
||||
useInvertedBackground={true}
|
||||
testimonial="The best coffee shop in town! The atmosphere is perfect for working or catching up with friends, and the coffee is consistently excellent."
|
||||
rating={5}
|
||||
author="Sarah Johnson"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/beauty-style-fashion-femininity-concept-positive-beautiful-young-european-woman-blue-shirt-looking-camera-with-broad-happy-smile-being-good-mood-kitchen-interior-background_343059-2087.jpg", alt: "Sarah J." },
|
||||
{ src: "http://img.b2bpic.net/free-photo/takeaway-cafe-concept-beautiful-feminine-woman-smiling-holding-cup-coffee-posing-against-beig_1258-119209.jpg", alt: "User 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/stylish-businessman-working-office_1157-21026.jpg", alt: "User 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/stylish-good-looking-office-lady-enjoying-hot-coffee-holding-cup-sitttin-cafe-alone_197531-22842.jpg", alt: "User 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/beauty-style-fashion-femininity-concept-positive-beautiful-young-european-woman-blue-shirt-looking-camera-with-broad-happy-smile-being-good-mood-kitchen-interior-background_343059-2087.jpg", alt: "User 5" },
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Visit Our Sanctuary"
|
||||
description="Find us in the heart of downtown. Open daily from 7:00 AM. Stop by for a chat or a quiet moment with your favorite brew."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Your Email",
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "How can we help?",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/friends-front-bar_23-2147680610.jpg"
|
||||
imageAlt="Coffee shop exterior"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Visit Our Sanctuary"
|
||||
description="Find us in the heart of downtown. Open daily from 7:00 AM. Stop by for a chat or a quiet moment with your favorite brew."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name" },
|
||||
{ name: "email", type: "email", placeholder: "Your Email" },
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "How can we help?" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/friends-front-bar_23-2147680610.jpg"
|
||||
imageAlt="Coffee shop exterior"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Brew & Bean"
|
||||
columns={[
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
{
|
||||
label: "Coffee",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
label: "Bakery",
|
||||
href: "#menu",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "Visit Us",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
label: "Email",
|
||||
href: "mailto:hello@brewandbean.com",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Social",
|
||||
items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Twitter",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Brew & Bean"
|
||||
columns={[
|
||||
{
|
||||
title: "Menu", items: [{ label: "Coffee", href: "#menu" }, { label: "Bakery", href: "#menu" }],
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [{ label: "Visit Us", href: "#contact" }, { label: "Email", href: "mailto:hello@brewandbean.com" }],
|
||||
},
|
||||
{
|
||||
title: "Social", items: [{ label: "Instagram", href: "#" }, { label: "Twitter", href: "#" }],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user