5 Commits

Author SHA1 Message Date
de4de8216e Merge version_2 into main
Merge version_2 into main
2026-04-09 02:14:47 +00:00
4f679b4fce Update src/app/page.tsx 2026-04-09 02:14:44 +00:00
4b5a67fd56 Merge version_1 into main
Merge version_1 into main
2026-04-09 02:13:54 +00:00
184441a2d0 Merge version_1 into main
Merge version_1 into main
2026-04-09 02:13:29 +00:00
3b96a3b166 Merge version_1 into main
Merge version_1 into main
2026-04-09 02:12:07 +00:00

View File

@@ -4,11 +4,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import { Eye, Lightbulb, Shield, Users, Zap } from "lucide-react";
export default function LandingPage() {
@@ -103,30 +103,28 @@ export default function LandingPage() {
</div>
<div id="pricing" data-section="pricing">
<PricingCardThree
<PricingCardEight
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Membership Levels"
description="Choose your path to cyber mastery."
plans={[
{ id: "p1", name: "Scout", price: "Free", features: ["Basic Academy Access", "Community Forum"], buttons: [{ text: "Start Now", href: "/academy" }] },
{ id: "p2", name: "Agent", price: "$29/mo", features: ["Full Academy", "Command Tools", "Daily News"], buttons: [{ text: "Upgrade", href: "/academy" }] },
{ id: "p3", name: "Elite", price: "$99/mo", features: ["Private Mentor", "Custom Commands", "Priority Support"], buttons: [{ text: "Apply Now", href: "/contact" }] }
{ id: "p1", badge: "Initiate", price: "Free", subtitle: "Core access to platform", features: ["Basic Academy Access", "Community Forum"], buttons: [{ text: "Start Now", href: "/academy" }] },
{ id: "p2", badge: "Operative", price: "$29/mo", subtitle: "Professional grade tools", features: ["Full Academy", "Command Tools", "Daily News"], buttons: [{ text: "Upgrade", href: "/academy" }] },
{ id: "p3", badge: "Elite", price: "$99/mo", subtitle: "Maximum security status", features: ["Private Mentor", "Custom Commands", "Priority Support"], buttons: [{ text: "Apply Now", href: "/contact" }] }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Platform", items: [{ label: "Academy", href: "/academy" }, { label: "Commands", href: "/commands" }] },
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "News", href: "/news" }] }
]}
<FooterLogoReveal
logoText="MHI Cyber Shield"
leftLink={{ text: "Privacy Policy", href: "/privacy" }}
rightLink={{ text: "Contact", href: "/contact" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}