5 Commits

Author SHA1 Message Date
bccb04337e Merge version_4 into main
Merge version_4 into main
2026-05-22 09:03:26 +00:00
ee0399cc17 Update src/app/page.tsx 2026-05-22 09:03:23 +00:00
f156c13a97 Merge version_3 into main
Merge version_3 into main
2026-05-22 09:01:44 +00:00
4b8959f1de Update src/app/page.tsx 2026-05-22 09:01:41 +00:00
4a63ddee52 Merge version_2 into main
Merge version_2 into main
2026-05-22 08:57:36 +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"
@@ -70,15 +72,16 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{ id: "1", brand: "Nannu Milk", name: "Pure Cow Milk", price: "$4.50", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/glasses-milk-with-straw_23-2148211420.jpg" },
{ id: "2", brand: "Nannu Milk", name: "Handcrafted Cheese", price: "$8.99", rating: 4, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/fresh-brie-cheese_573717-80.jpg" },
{ id: "3", brand: "Nannu Milk", name: "Organic Yogurt", price: "$5.25", rating: 5, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/yougurt-with-granola-fruits-glass_23-2148579846.jpg" },
{ id: "4", brand: "Nannu Milk", name: "Thick Fresh Cream", price: "$6.00", rating: 4, reviewCount: "70", imageSrc: "http://img.b2bpic.net/free-photo/view-make-up-foundation-products_23-2149736904.jpg" },
{ id: "5", brand: "Nannu Milk", name: "Fresh Paneer", price: "$7.50", rating: 5, reviewCount: "110", imageSrc: "http://img.b2bpic.net/free-photo/christmas-almond-nougat-black-slate-background_123827-34438.jpg" },
{ id: "6", brand: "Nannu Milk", name: "Golden Butter", price: "$9.00", rating: 5, reviewCount: "65", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-kinfe-cutting-butter-breads-around-wooden-background_141793-5383.jpg" },
{ id: "1", brand: "Nannu Milk", name: "Fresh Cow Milk", price: "$3.50", rating: 5, reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/glasses-milk-with-straw_23-2148211420.jpg" },
{ id: "2", brand: "Nannu Milk", name: "Fresh Curd", price: "$4.00", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/yougurt-with-granola-fruits-glass_23-2148579846.jpg" },
{ id: "3", brand: "Nannu Milk", name: "Fresh Paneer", price: "$7.50", rating: 5, reviewCount: "110", imageSrc: "http://img.b2bpic.net/free-photo/christmas-almond-nougat-black-slate-background_123827-34438.jpg" },
{ id: "4", brand: "Nannu Milk", name: "Milk Burfi Assortment", price: "$12.00", rating: 5, reviewCount: "200", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-indian-sweets-assortment_23-2149174523.jpg" },
{ id: "5", brand: "Nannu Milk", name: "Festive Sweet Box", price: "$18.00", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/top-view-indian-sweets-assortment-with-diyas_23-2149174530.jpg" },
{ id: "6", brand: "Nannu Milk", name: "Fast Food Specials", price: "$6.50", rating: 4, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-delicious-fast-food_23-2149301140.jpg" },
{ id: "7", brand: "Nannu Milk", name: "Refreshing Soft Drinks", price: "$2.50", rating: 4, reviewCount: "140", imageSrc: "http://img.b2bpic.net/free-photo/assorted-refreshing-drinks_23-2149174540.jpg" },
]}
title="Farm Fresh Offerings"
description="Explore our curated collection of pure dairy products and traditional delicacies, prepared fresh every morning for your enjoyment."
description="Explore our curated collection of pure dairy products, traditional sweets, and snacks, prepared fresh for your family."
/>
</div>
@@ -115,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"
@@ -166,4 +182,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}