diff --git a/src/app/page.tsx b/src/app/page.tsx index 9d7af8e..afa3136 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,7 +5,6 @@ import ReactLenis from "lenis/react"; import ContactText from '@/components/sections/contact/ContactText'; import FaqBase from '@/components/sections/faq/FaqBase'; import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; import HeroCentered from '@/components/sections/hero/HeroCentered'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; @@ -13,6 +12,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; import { Layers, Lightbulb, Rocket, Sparkles, User } from "lucide-react"; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; export default function LandingPage() { return ( @@ -83,20 +83,20 @@ export default function LandingPage() { buttonAnimation="blur-reveal" marqueeItems={[ { - type: "text-icon", text: "Innovative Design", icon: Lightbulb, + type: "text-icon", text: "Innovative Design", icon: Lightbulb }, { - type: "text-icon", text: "Strategic Solutions", icon: Rocket, + type: "text-icon", text: "Strategic Solutions", icon: Rocket }, { - type: "text-icon", text: "Creative Excellence", icon: Sparkles, + type: "text-icon", text: "Creative Excellence", icon: Sparkles }, { - type: "text-icon", text: "User-Centric Approach", icon: User, + type: "text-icon", text: "User-Centric Approach", icon: User }, { - type: "text-icon", text: "Seamless Integration", icon: Layers, - }, + type: "text-icon", text: "Seamless Integration", icon: Layers + } ]} /> @@ -223,7 +223,7 @@ export default function LandingPage() {