diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index a8e04ea..23b4908 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,7 +3,7 @@ import { useState } from "react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import FooterCard from "@/components/sections/footer/FooterCard"; import ReactLenis from "lenis/react"; export default function ContactPage() { @@ -48,14 +48,12 @@ export default function ContactPage() { - ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index c7971bb..764a4ed 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import FaqDouble from '@/components/sections/faq/FaqDouble'; import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import FooterCard from '@/components/sections/footer/FooterCard'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; @@ -132,17 +132,13 @@ export default function LandingPage() { ); -} \ No newline at end of file +}