diff --git a/src/app/page.tsx b/src/app/page.tsx index 1e63206..fe8046c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,16 +3,16 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import AboutMetric from '@/components/sections/about/AboutMetric'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import FooterCard from '@/components/sections/footer/FooterCard'; import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import { Award, CreditCard, Database, Settings, Shield, Zap } from "lucide-react"; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import { Award, CreditCard, Database, Settings, Shield, Zap, Mail, Phone, Users } from "lucide-react"; export default function LandingPage() { return ( @@ -32,16 +32,11 @@ export default function LandingPage() { @@ -182,92 +97,62 @@ export default function LandingPage() { title="System Performance" tag="Live Stats" metrics={[ - { - id: "m1", value: "500+", description: "Registered Labs"}, - { - id: "m2", value: "1M+", description: "Reports Generated"}, - { - id: "m3", value: "24/7", description: "Secure Monitoring"}, + { id: "m1", value: "500+", description: "Registered Labs" }, + { id: "m2", value: "1M+", description: "Reports Generated" }, + { id: "m3", value: "24/7", description: "Secure Monitoring" }, ]} metricsAnimation="slide-up" />
-
-
-