diff --git a/src/app/page.tsx b/src/app/page.tsx index 9c13f91..6ecc6e2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,250 +1,108 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import { ThemeProvider } from "@/components/theme/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import HeroCentered from "@/components/sections/hero/HeroCentered"; -import FeatureBento from "@/components/sections/feature/FeatureBento"; -import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; -import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne"; -import ContactCenter from "@/components/sections/contact/ContactCenter"; +import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; +import ContactText from "@/components/sections/contact/ContactText"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; -import { Award, Brain, Briefcase, CheckCircle, Clock, Crown, DollarSign, Mail, Shield, Target, TrendingUp, Users, Zap, Sparkles, Users2, Gauge, Globe, ArrowRight, BarChart3 } from "lucide-react"; -import { useState } from "react"; - -export default function LandingPage() { - const [showConsultationForm, setShowConsultationForm] = useState(false); - - const handleConsultationClick = () => { - setShowConsultationForm(true); - // Scroll to contact section - const contactSection = document.getElementById("contact"); - if (contactSection) { - contactSection.scrollIntoView({ behavior: "smooth" }); - } - }; +import { Users } from "lucide-react"; +export default function Home() { return ( - +
-
- + -
- -
- -
- -
-
-
- +
); }