Merge version_4 into main #4

Merged
bender merged 1 commits from version_4 into main 2026-05-22 09:03:26 +00:00

View File

@@ -12,6 +12,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
export default function LandingPage() {
return (
@@ -36,6 +37,7 @@ export default function LandingPage() {
{ name: "Products", id: "products" },
{ name: "Features", id: "features" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Feedback", id: "feedback" },
{ name: "Contact", id: "contact" },
]}
brandName="Nannu Milk"
@@ -116,6 +118,19 @@ export default function LandingPage() {
/>
</div>
<div id="feedback" data-section="feedback">
<TestimonialCardTen
title="Customer Feedback"
description="We value what our customers have to say about their experience with us."
textboxLayout="split"
useInvertedBackground={true}
testimonials={[
{ id: "1", title: "Excellent Service", quote: "The quality of milk is unmatched and the delivery is always on time.", name: "Amit V.", role: "Regular Customer" },
{ id: "2", title: "Fresh Sweets", quote: "The sweets taste so traditional and fresh. Highly recommended!", name: "Sneha K.", role: "Family Shopper" }
]}
/>
</div>
<div id="socialProof" data-section="socialProof">
<SocialProofOne
textboxLayout="split"
@@ -167,4 +182,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}