6 Commits

Author SHA1 Message Date
22329a98f9 Update src/app/page.tsx 2026-05-23 03:29:16 +00:00
54509cc958 Merge version_3 into main
Merge version_3 into main
2026-05-23 03:25:18 +00:00
86752e7ae3 Update src/app/page.tsx 2026-05-23 03:25:12 +00:00
da38e77940 Merge version_2 into main
Merge version_2 into main
2026-05-23 03:23:23 +00:00
b904d1911c Merge version_2 into main
Merge version_2 into main
2026-05-23 03:22:49 +00:00
487770216a Merge version_2 into main
Merge version_2 into main
2026-05-23 03:22:20 +00:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
@@ -39,7 +39,7 @@ export default function LandingPage() {
{
name: "Gallery", id: "#gallery"},
{
name: "Visit", id: "#contact"},
name: "Contact", id: "#contact"},
]}
brandName="Beanthere Cafe"
/>
@@ -61,6 +61,16 @@ export default function LandingPage() {
/>
</div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne
names={["Saigon Daily", "District 1 Guide", "Coffee Lovers HCMC", "Urban Lifestyle"]}
title="Featured In"
description="Trusted by the city's finest publications."
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="about" data-section="about">
<TextAbout
useInvertedBackground={false}
@@ -156,25 +166,15 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{
variant: "rotated-rays-static"}}
text="Visit us in the heart of District 1."
buttons={[
{
text: "Reserve Now", href: "#"},
<ContactSplitForm
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 },
]}
/>
</div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne
names={["Saigon Daily", "District 1 Guide", "Coffee Lovers HCMC", "Urban Lifestyle"]}
title="Featured In"
description="Trusted by the city's finest publications."
textboxLayout="default"
useInvertedBackground={false}
buttonText="Submit Inquiry"
/>
</div>