Update src/app/page.tsx

This commit is contained in:
2026-03-29 11:55:20 +00:00
parent 1b318d4887
commit 9475d87a04

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
@@ -154,31 +154,25 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcP2IOkzwsyi3hLAuj6ee8BBjN/a-minimalist-abstract-architectural-shot-1774785233620-265fc6e6.png"
<FooterBaseCard
logoText="Zenvy"
columns={[
{
title: "Company", items: [
{
label: "About", href: "#"},
{
label: "Sustainability", href: "#"},
{ label: "About", href: "#" },
{ label: "Sustainability", href: "#" },
],
},
{
title: "Support", items: [
{
label: "FAQ", href: "#"},
{
label: "Contact", href: "#"},
{ label: "FAQ", href: "#" },
{ label: "Contact", href: "#" },
],
},
{
title: "Shop", items: [
{
label: "All Products", href: "#products"},
{
label: "New Arrivals", href: "#"},
{ label: "All Products", href: "#products" },
{ label: "New Arrivals", href: "#" },
],
},
]}
@@ -187,4 +181,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}