Merge version_4 into main #5

Merged
bender merged 1 commits from version_4 into main 2026-05-18 10:52:33 +00:00

View File

@@ -11,7 +11,6 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import { ShoppingBag, Truck, Users } from "lucide-react";
@@ -64,6 +63,7 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="split"
gridVariant="bento-grid"
useInvertedBackground={false}
features={[
{ title: "Groceries", description: "Fresh farm produce and daily essentials.", imageSrc: "https://img.freepik.com/free-photo/top-view-fresh-vegetables_23-2148671569.jpg", titleImageSrc: "https://img.freepik.com/free-icon/grocery_318-620248.jpg", buttonText: "Shop Now" },
{ title: "Snacks & Beverages", description: "Your favorite brands delivered fresh.", imageSrc: "https://img.freepik.com/free-photo/tasty-snacks_23-2148671569.jpg", titleImageSrc: "https://img.freepik.com/free-icon/snacks_318-620248.jpg", buttonText: "Shop Now" },
@@ -78,6 +78,8 @@ export default function LandingPage() {
<ProductCardOne
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
textboxLayout="default"
useInvertedBackground={false}
products={[
{ id: "1", name: "Organic Milk", price: "₹60", imageSrc: "https://img.freepik.com/free-photo/glass-milk-fresh-milk-background_114579-2423.jpg" },
{ id: "2", name: "Fresh Bread", price: "₹40", imageSrc: "https://img.freepik.com/free-photo/freshly-baked-bread_23-2148784841.jpg" },
@@ -91,6 +93,8 @@ export default function LandingPage() {
<div id="about" data-section="about">
<MetricCardThree
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
metrics={[
{ id: "m1", icon: Users, title: "Customers Served", value: "10k+" },
{ id: "m2", icon: ShoppingBag, title: "Quality Guaranteed", value: "100%" },
@@ -103,6 +107,9 @@ export default function LandingPage() {
<div id="pricing" data-section="pricing">
<PricingCardEight
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
plans={[
{ id: "p1", badge: "Fresh", price: "₹99", subtitle: "Daily Essentials Bundle", buttons: [{ text: "Get Deal" }], features: ["Fresh Veggies", "Dairy", "Snacks"] }
]}
@@ -115,6 +122,8 @@ export default function LandingPage() {
<TestimonialCardOne
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{ id: "t1", name: "Ravi K", role: "Customer", company: "Happy Shopper", rating: 5, imageSrc: "https://img.freepik.com/free-photo/man-smiling_23-2148784841.jpg" }
]}
@@ -131,6 +140,7 @@ export default function LandingPage() {
]}
sideTitle="FAQ"
faqsAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
@@ -138,6 +148,7 @@ export default function LandingPage() {
<ContactSplitForm
title="Get in touch"
description="Reach out to us for any queries or feedback."
useInvertedBackground={false}
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email", required: true }
@@ -149,6 +160,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterMedia
logoText="B MART (బి మార్ట్)"
videoSrc="https://www.youtube.com/watch?v=dQw4w9WgXcQ"
columns={[{ title: "Store", items: [{ label: "Categories", href: "#features" }, { label: "Offers", href: "#pricing" }] }]}
/>
</div>