4 Commits

Author SHA1 Message Date
95a0415168 Merge version_3 into main
Merge version_3 into main
2026-05-23 03:34:51 +00:00
c6ee501837 Update src/app/page.tsx 2026-05-23 03:34:45 +00:00
60bc8d5671 Switch to version 3: modified src/app/page.tsx 2026-05-23 03:33:51 +00:00
2e5e7db252 Merge version_4 into main
Merge version_4 into main
2026-05-23 03:29:22 +00:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactText from '@/components/sections/contact/ContactText';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import FooterSimple from '@/components/sections/footer/FooterSimple'; import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
@@ -39,7 +39,7 @@ export default function LandingPage() {
{ {
name: "Gallery", id: "#gallery"}, name: "Gallery", id: "#gallery"},
{ {
name: "Contact", id: "#contact"}, name: "Visit", id: "#contact"},
]} ]}
brandName="Beanthere Cafe" brandName="Beanthere Cafe"
/> />
@@ -74,7 +74,7 @@ export default function LandingPage() {
<div id="about" data-section="about"> <div id="about" data-section="about">
<TextAbout <TextAbout
useInvertedBackground={false} useInvertedBackground={false}
title="A hidden urban sanctuary designed for slow mornings and meaningful conversations." title="A lush tropical garden, where sunlight filters through the leaves, the warm aroma of coffee blends with old-fashioned details, creating a peaceful and unhurried atmosphere in the heart of the city. "
/> />
</div> </div>
@@ -166,15 +166,15 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplitForm <ContactText
title="Visit us"
description="Reserve your spot or send us a message."
inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true },
]}
useInvertedBackground={false} useInvertedBackground={false}
buttonText="Submit Inquiry" background={{
variant: "rotated-rays-static"}}
text="Visit us in the heart of District 1."
buttons={[
{
text: "Reserve Now", href: "#"},
]}
/> />
</div> </div>