diff --git a/src/app/page.tsx b/src/app/page.tsx index 90d1129..1436b02 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,276 +1,196 @@ "use client"; 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 FeatureBento from '@/components/sections/feature/FeatureBento'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import TeamCardSix from '@/components/sections/team/TeamCardSix'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; -import { Award, Flame, Home, Leaf, Star, Users } from "lucide-react"; +import TeamCardTen from '@/components/sections/team/TeamCardTen'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; export default function LandingPage() { + const theme = { + defaultButtonVariant: "text-stagger", defaultTextAnimation: "background-highlight", borderRadius: "pill", contentWidth: "compact", sizing: "mediumSizeLargeTitles", background: "noiseDiagonalGradient", cardStyle: "solid", primaryButtonStyle: "flat", secondaryButtonStyle: "solid", headingFontWeight: "extrabold" + }; + return ( - - - -
- -
- -
- -
- - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); }