2 Commits

Author SHA1 Message Date
e0f67c660e Update src/app/page.tsx 2026-03-31 13:06:37 +00:00
5ba5905dc7 Merge version_2 into main
Merge version_2 into main
2026-03-31 13:04:15 +00:00

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
@@ -222,33 +222,26 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/food-cooking_114579-8690.jpg"
<FooterBase
columns={[
{
title: "Shop", items: [
{
label: "All Products", href: "#products"},
{
label: "Bundles", href: "#pricing"},
],
{ label: "All Products", href: "#products" },
{ label: "Bundles", href: "#pricing" }
]
},
{
title: "Company", items: [
{
label: "About Us", href: "#about"},
{
label: "Story", href: "#about"},
],
{ label: "About Us", href: "#about" },
{ label: "Story", href: "#about" }
]
},
{
title: "Support", items: [
{
label: "FAQ", href: "#faq"},
{
label: "Contact", href: "#"},
],
},
{ label: "FAQ", href: "#faq" },
{ label: "Contact", href: "#contact" }
]
}
]}
logoText="Sakshat Foods"
copyrightText="© 2025 Sakshat Foods. Tradition in Minutes."
@@ -257,4 +250,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}