4 Commits

Author SHA1 Message Date
7aa09ffbb4 Update src/app/page.tsx 2026-03-12 14:36:23 +00:00
d933ed1e58 Update src/app/page.tsx 2026-03-12 14:35:36 +00:00
7bc870013e Merge version_2 into main
Merge version_2 into main
2026-03-12 14:33:35 +00:00
12995d8cf1 Merge version_2 into main
Merge version_2 into main
2026-03-12 14:33:10 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import PricingCardNine from "@/components/sections/pricing/PricingCardNine"; import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import { Brain, CheckCircle, Database, TrendingUp } from "lucide-react"; import { Brain, CheckCircle, Database, TrendingUp } from "lucide-react";
@@ -65,7 +65,8 @@ export default function LandingPage() {
buttons={[ buttons={[
{ text: "View Memberships →", href: "memberships" } { text: "View Memberships →", href: "memberships" }
]} ]}
buttonAnimation="slide-up" containerClassName="relative w-full h-screen min-h-screen"
mediaWrapperClassName="absolute inset-0 w-full h-full"
/> />
</div> </div>
@@ -203,4 +204,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }