Update src/app/page.tsx

This commit is contained in:
2026-04-04 11:49:31 +00:00
parent b9bddb2a2b
commit dee5cb32e6

View File

@@ -2,9 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
@@ -89,9 +89,9 @@ export default function LandingPage() {
features={[
{
title: "Artisanal Brews", description: "Hand-picked beans roasted to perfection for the ultimate coffee experience.", phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/coffee-beans-background_23-2148116660.jpg?_wi=1", imageAlt: "Coffee selection"},
imageSrc: "http://img.b2bpic.net/free-photo/coffee-beans-background_23-2148116660.jpg", imageAlt: "Coffee selection"},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-holding-blue-teacup_23-2148567575.jpg?_wi=1", imageAlt: "Cafe table"}
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-holding-blue-teacup_23-2148567575.jpg", imageAlt: "Cafe table"}
},
{
title: "Private Lounges", description: "Quiet, secluded spaces perfect for meetings or reading, offering true privacy.", phoneOne: {
@@ -101,10 +101,10 @@ export default function LandingPage() {
},
{
title: "Gourmet Pastries", description: "Freshly baked delights paired perfectly with our signature coffee blends.", phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/coffee-beans-background_23-2148116660.jpg?_wi=2", imageAlt: "Fresh pastries"},
imageSrc: "http://img.b2bpic.net/free-photo/coffee-beans-background_23-2148116660.jpg", imageAlt: "Fresh pastries"},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-holding-blue-teacup_23-2148567575.jpg?_wi=2", imageAlt: "Coffee and cake"}
},
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-holding-blue-teacup_23-2148567575.jpg", imageAlt: "Coffee and cake"}
}
]}
showStepNumbers={false}
title="Exquisite Offerings"
@@ -134,42 +134,45 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCTA
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain"}}
tag="Connect"
title="Reserve Your Sanctuary"
description="We are open daily from 8:00 AM to 10:00 PM. Located in the heart of the city, we invite you to experience our hospitality. Book a table or drop by for a visit."
buttons={[
{
text: "Make a Reservation", href: "#"
}
]}
background={{
variant: "plain"
}}
useInvertedBackground={false}
description="Book a table or reach out to us for private event inquiries."
imageSrc="http://img.b2bpic.net/free-photo/couple-embracing-each-other-while-outdoors-night_23-2149215095.jpg"
mediaAnimation="opacity"
inputPlaceholder="Your email address"
buttonText="Inquire Now"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
<FooterLogoEmphasis
columns={[
{
title: "Navigation", items: [
{ label: "Home", href: "#home" },
{ label: "About", href: "#about" },
{ label: "Menu", href: "#features" },
items: [
{
label: "About", href: "#about"},
{
label: "Menu", href: "#features"},
],
},
{
title: "Support", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
items: [
{
label: "Privacy", href: "#"},
{
label: "Terms", href: "#"},
],
},
{
title: "Social", items: [
{ label: "Instagram", href: "#" },
{ label: "Facebook", href: "#" },
items: [
{
label: "Instagram", href: "#"},
{
label: "Facebook", href: "#"},
],
},
]}
@@ -179,4 +182,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}