5 Commits

Author SHA1 Message Date
bbad148ec7 Merge version_4 into main
Merge version_4 into main
2026-05-20 17:41:07 +00:00
92b2449916 Update src/app/page.tsx 2026-05-20 17:41:03 +00:00
57071bef5d Merge version_3 into main
Merge version_3 into main
2026-05-20 17:37:14 +00:00
076de9d7a2 Update src/app/page.tsx 2026-05-20 17:37:11 +00:00
83d73fa598 Merge version_2 into main
Merge version_2 into main
2026-05-20 17:22:48 +00:00

View File

@@ -2,6 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import { Instagram, MessageCircle } from "lucide-react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
@@ -11,7 +12,6 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
export default function LandingPage() {
return (
@@ -122,34 +122,6 @@ export default function LandingPage() {
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "1", name: "Priya Deshmukh", handle: "@priyadeshmukh", testimonial: "Exceptional craftsmanship! My bridal set is a masterpiece.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/pleasant-looking-afro-american-female-with-broad-smile-holds-mug-coffee-tea-enjoys-break-after-hard-working-day_273609-3085.jpg"},
{
id: "2", name: "Aniket Patil", handle: "@aniketpatil", testimonial: "Purchased an anniversary gift. The service was impeccable.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-blond-female-dressed-white-shirt-red-eyeglasses_613910-14657.jpg"},
{
id: "3", name: "Sunita Kulkarni", handle: "@sunitakulkarni", testimonial: "Trustworthy and authentic. Highly recommended for heirlooms.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-rich-woman-near-car_23-2149684321.jpg"},
{
id: "4", name: "Rahul Jadhav", handle: "@rahuljadhav", testimonial: "Transparent pricing and great variety in temple jewellery.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-applying-lipstick-white-wall_114579-49631.jpg"},
{
id: "5", name: "Sneha More", handle: "@snehamore", testimonial: "Fantastic collection for every traditional occasion.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-choosing-necklace-jewelry-store_1303-30672.jpg"},
]}
showRating={true}
title="Customer Stories"
description="Hear from our patrons across Maharashtra."
/>
</div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne
textboxLayout="default"
@@ -194,9 +166,13 @@ export default function LandingPage() {
<FooterCard
logoText="tuljabhavani jewellers"
copyrightText="© 2025 tuljabhavani jewellers Jewellery. All Rights Reserved."
socialLinks={[
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Follow us on Instagram" },
{ icon: MessageCircle, href: "https://wa.me", ariaLabel: "Chat with us on WhatsApp" }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}