Update src/app/page.tsx

This commit is contained in:
2026-03-31 02:01:58 +00:00
parent 1e0a96204e
commit 424f984db9

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroCentered from '@/components/sections/hero/HeroCentered';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
@@ -40,27 +40,12 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroCentered
background={{ variant: "plain" }}
title="Awaken Your Senses with Every Sip"
<HeroLogo
logoText="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"
videoSrc="https://cdn.pixabay.com/video/2023/07/26/172675-849206256_large.mp4"
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>
@@ -146,4 +131,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}