Update src/app/page.tsx

This commit is contained in:
2026-05-02 09:10:38 +00:00
parent 776baa1b11
commit ad8e1fa454

View File

@@ -9,8 +9,8 @@ import ProductCardOne from "@/components/sections/product/ProductCardOne";
import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen";
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
import ContactText from "@/components/sections/contact/ContactText";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Sparkles, Store, MapPin, Phone } from "lucide-react";
export default function JeetSweetsPage() {
@@ -135,22 +135,27 @@ export default function JeetSweetsPage() {
</div>
<div id="contact" data-section="contact">
<ContactText
text="Ready to savor the taste of tradition? Visit us today or order through WhatsApp for a quick, fresh delivery experience in Ludhiana."
<ContactSplit
tag="Connect with Us"
title="Savor the Tradition"
description="Ready to experience authentic flavors? Reach out to us for bulk orders, festive gifts, or daily treats."
background={{ variant: "plain" }}
buttons={[
{ text: "Message on WhatsApp", href: "https://wa.me/yournumber" },
{ text: "Get Directions", href: "https://maps.google.com" }
]}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Jeet Sweets"
leftLink={{ text: "Ludhiana, Punjab", href: "#" }}
rightLink={{ text: "WhatsApp Order", href: "#contact" }}
<FooterSimple
columns={[
{
title: "Location", items: [{ label: "Ludhiana, Punjab" }]
},
{
title: "Support", items: [{ label: "WhatsApp Order", href: "#contact" }]
}
]}
bottomLeftText="© 2024 Jeet Sweets"
bottomRightText="Authentic Traditional Indian Sweets"
/>
</div>
</ReactLenis>