Update src/app/page.tsx

This commit is contained in:
2026-05-11 13:31:42 +00:00
parent 40aba46848
commit e07c2127c9

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
@@ -12,7 +12,7 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import { Award, Clock, Heart } from "lucide-react";
import { Award, Clock, Heart, MapPin, Phone, Instagram } from "lucide-react";
export default function LandingPage() {
return (
@@ -36,6 +36,7 @@ export default function LandingPage() {
{ name: "Bestsellers", id: "bestsellers" },
{ name: "Reviews", id: "testimonials" },
{ name: "Order", id: "/order" },
{ name: "Contact", id: "contact" },
]}
brandName="Maarus Bakers"
/>
@@ -141,10 +142,14 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Stay Connected"
title="Lets Bake Something Special"
description="Subscribe for exclusive recipes and discounts."
<ContactCTA
tag="Visit Us"
title="Our Store Location"
description="Visit Maarus Bakers at 123 Baker Street, Sweet City. Open 7 days a week, 9am - 9pm."
buttons={[
{ text: "Get Directions", href: "https://maps.google.com/?q=Maarus+Bakers+123+Baker+Street" },
{ text: "Call Now", href: "tel:+1234567890" }
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
@@ -155,7 +160,7 @@ export default function LandingPage() {
logoSrc="https://tinw.in//uploads/vcards/profiles/17279/file-(17).jpg"
logoText="Maarus Bakers"
columns={[
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Order", href: "/order" }] },
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Order", href: "/order" }, { label: "Contact", href: "#contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }] },
]}
/>
@@ -163,4 +168,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}