diff --git a/src/app/page.tsx b/src/app/page.tsx index c77df8b..3a7d90d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,9 +2,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import { Zap, Shield, Star, Award } from 'lucide-react'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import ContactText from '@/components/sections/contact/ContactText'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import FooterSimple from '@/components/sections/footer/FooterSimple'; import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial'; @@ -31,11 +30,16 @@ export default function LandingPage() {
-
-
@@ -175,23 +228,32 @@ export default function LandingPage() { columns={[ { title: "Agency", items: [ - { label: "About", href: "#about" }, - { label: "Services", href: "#features" }, - { label: "Careers", href: "#" }, + { + label: "About", href: "#about"}, + { + label: "Services", href: "#features"}, + { + label: "Careers", href: "#"}, ], }, { title: "Support", items: [ - { label: "Contact", href: "#contact" }, - { label: "FAQ", href: "#faq" }, - { label: "Terms", href: "#" }, + { + label: "Contact", href: "#contact"}, + { + label: "FAQ", href: "#faq"}, + { + label: "Terms", href: "#"}, ], }, { title: "Socials", items: [ - { label: "LinkedIn", href: "#" }, - { label: "Instagram", href: "#" }, - { label: "Twitter", href: "#" }, + { + label: "LinkedIn", href: "#"}, + { + label: "Instagram", href: "#"}, + { + label: "Twitter", href: "#"}, ], }, ]} @@ -202,4 +264,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file