1 Commits

Author SHA1 Message Date
53cf9ffe83 Update src/app/page.tsx 2026-04-03 06:09:47 +00:00

View File

@@ -3,9 +3,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import { Coffee, Heart, Zap } from "lucide-react"; import { Coffee, Heart, Zap } from "lucide-react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboard from '@/components/sections/hero/HeroBillboard'; import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import MediaAbout from '@/components/sections/about/MediaAbout'; import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -133,39 +133,41 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplitForm <ContactCenter
title="Get in Touch"
description="Have questions about our roasts or want to host an event? We'd love to hear from you."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email", required: true }
]}
textarea={{ name: "message", placeholder: "How can we help?" }}
useInvertedBackground={false} useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/coffee-machine-making-perfect-cup-coffee_23-2151699649.jpg?_wi=3" background={{
variant: "plain"}}
tag="Newsletter"
title="Join Our Coffee Club"
description="Get exclusive invites to our tasting events and monthly news."
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoEmphasis <FooterSimple
logoText="Lumi Cafe"
columns={[ columns={[
{ {
items: [ title: "Company", items: [
{ label: "About Us", href: "#about" }, {
{ label: "Our Roasts", href: "#menu" }, label: "About Us", href: "#about"},
{
label: "Our Roasts", href: "#menu"},
], ],
}, },
{ {
items: [ title: "Support", items: [
{ label: "Contact", href: "#contact" }, {
{ label: "FAQ", href: "#" }, label: "Contact", href: "#contact"},
{
label: "FAQ", href: "#"},
], ],
}, },
]} ]}
bottomLeftText="© 2024 Lumi Cafe. All rights reserved."
bottomRightText="Crafted with love"
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }