diff --git a/src/app/page.tsx b/src/app/page.tsx new file mode 100644 index 0000000..55f4a30 --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,193 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import HeroBillboard from "@/components/sections/hero/HeroBillboard"; +import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; +import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; +import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen"; +import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Award, CheckCircle, Mail, Sparkles, Star } from "lucide-react"; + +export default function LandingPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}