5 Commits

Author SHA1 Message Date
a81769ef14 Update src/app/page.tsx 2026-04-02 21:30:05 +00:00
3bb713e1ac Update src/app/page.tsx 2026-04-02 21:29:32 +00:00
4eba13c67b Merge version_1 into main
Merge version_1 into main
2026-04-02 21:28:12 +00:00
5f4ba39775 Merge version_1 into main
Merge version_1 into main
2026-04-02 21:27:43 +00:00
b09473ddab Merge version_1 into main
Merge version_1 into main
2026-04-02 21:27:14 +00:00

View File

@@ -2,12 +2,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import MediaAbout from '@/components/sections/about/MediaAbout'; import TextAbout from '@/components/sections/about/TextAbout';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -25,112 +25,79 @@ export default function LandingPage() {
> >
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarStyleApple
navItems={[ navItems={[
{ { name: "Home", id: "hero" },
name: "Home", id: "hero"}, { name: "About", id: "about" },
{ { name: "Review", id: "contact" },
name: "About", id: "about"},
{
name: "Review", id: "contact"},
]} ]}
brandName="Café Feedback" brandName="Café Feedback"
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroCarouselLogo <HeroLogoBillboard
logoText="Café Feedback Platform" logoText="Café Feedback Platform"
description="Your voice matters! Tell us about your recent visit and help us craft the perfect coffee experience." description="Your voice matters! Tell us about your recent visit and help us craft the perfect coffee experience."
buttons={[ buttons={[{ text: "Give Feedback", href: "#contact" }]}
{ background={{ variant: "sparkles-gradient" }}
text: "Give Feedback", href: "#contact"}, imageSrc="http://img.b2bpic.net/free-photo/medium-shot-woman-taking-food-photos_23-2149294502.jpg?_wi=1"
]} imageAlt="Cozy cafe atmosphere"
slides={[ mediaAnimation="blur-reveal"
{
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-taking-food-photos_23-2149294502.jpg?_wi=1", imageAlt: "Cozy cafe interior"},
{
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-taking-food-photos_23-2149294502.jpg?_wi=2", imageAlt: "Coffee preparation"},
{
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-taking-food-photos_23-2149294502.jpg?_wi=3", imageAlt: "Fresh artisan pastries"},
{
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-taking-food-photos_23-2149294502.jpg?_wi=4", imageAlt: "Relaxing coffee ambiance"},
{
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-taking-food-photos_23-2149294502.jpg?_wi=5", imageAlt: "Friendly customer service"},
{
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-taking-food-photos_23-2149294502.jpg?_wi=6", imageAlt: "Specialty coffee selection"},
]}
/> />
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">
<MediaAbout <TextAbout
useInvertedBackground={false}
title="Our Passion for Coffee" title="Our Passion for Coffee"
description="We believe that every cup tells a story. From sourcing ethical beans to the perfect roast, we are dedicated to excellence. Your feedback helps us maintain the standards you expect and love." tag="Our Mission"
imageSrc="http://img.b2bpic.net/free-photo/person-cafe-enjoying-book_23-2150064692.jpg?_wi=1" useInvertedBackground={true}
imageAlt="Barista serving fresh coffee"
/> />
</div> </div>
<div id="product" data-section="product"> <div id="product" data-section="product">
<ProductCardTwo <ProductCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Our Signature Blends" title="Our Signature Blends"
description="Discover the artisan roasts that our customers love the most." description="Discover the artisan roasts that our customers love the most."
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
textboxLayout="split-description"
useInvertedBackground={false}
products={[ products={[
{ {
id: "1", brand: "Café Feedback", name: "Ethiopian Yirgacheffe", price: "$18.00", rating: 5, id: "1", name: "Ethiopian Yirgacheffe", price: "$18.00", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-taking-food-photos_23-2149294502.jpg?_wi=7"
reviewCount: "124", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-taking-food-photos_23-2149294502.jpg?_wi=7"}, },
{ {
id: "2", brand: "Café Feedback", name: "Colombia Supremo", price: "$16.00", rating: 4, id: "2", name: "Colombia Supremo", price: "$16.00", imageSrc: "http://img.b2bpic.net/person-cafe-enjoying-book_23-2150064692.jpg?_wi=2"
reviewCount: "98", imageSrc: "http://img.b2bpic.net/free-photo/person-cafe-enjoying-book_23-2150064692.jpg?_wi=2"}, },
]} ]}
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <ContactSplitForm
title="Tell us your thoughts"
description="We value your input. Let us know how we can make your experience better."
useInvertedBackground={false} useInvertedBackground={false}
background={{ mediaAnimation="blur-reveal"
variant: "plain"}} inputs={[
text="Fill out our form and let us know about your visit. Your reviews help us grow." { name: "name", type: "text", placeholder: "Your Name", required: true },
buttons={[ { name: "email", type: "email", placeholder: "Email Address", required: true }
{
text: "Submit Review", href: "#"},
]} ]}
textarea={{ name: "feedback", placeholder: "How was your visit?", rows: 5 }}
mediaPosition="left"
buttonText="Submit Review"
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterLogoReveal
logoText="Café Feedback" logoText="Café Feedback"
columns={[ leftLink={{ text: "Privacy Policy", href: "#" }}
{ rightLink={{ text: "Terms of Service", href: "#" }}
title: "Links", items: [
{
label: "Home", href: "#hero"},
{
label: "About", href: "#about"},
{
label: "Give Feedback", href: "#contact"},
],
},
{
title: "Policy", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
],
},
]}
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }