Merge version_3 into main #4

Merged
bender merged 1 commits from version_3 into main 2026-04-16 14:17:45 +00:00

View File

@@ -12,7 +12,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import { BarChart2, CheckCircle, FileText, Lightbulb, Network, Users, Zap, Search } from "lucide-react";
import { BarChart2, CheckCircle, FileText, Lightbulb, Network, Users, Zap, Search, BookOpen } from "lucide-react";
export default function LandingPage() {
return (
@@ -34,10 +34,11 @@ export default function LandingPage() {
navItems={[
{ name: "Home", id: "#hero" },
{ name: "Features", id: "#features" },
{ name: "Mock Tests", id: "#mock-test" },
{ name: "Pricing", id: "#pricing" },
{ name: "Contact", id: "#contact" },
]}
brandName="LearnAI"
brandName="zn class"
/>
</div>
@@ -63,12 +64,17 @@ export default function LandingPage() {
/>
</div>
<div id="mock-test" data-section="mock-test" className="py-16">
<div className="container mx-auto px-6 text-center">
<h2 className="text-3xl font-bold mb-6">Practice Mock Tests</h2>
<p className="mb-8 opacity-70">Evaluate your progress with our curated mock exam series.</p>
<button className="bg-primary-cta text-white px-8 py-3 rounded-full">Take a Practice Exam</button>
</div>
<div id="mock-test" data-section="mock-test">
<AboutMetric
useInvertedBackground={true}
title="Practice Mock Tests"
metrics={[
{ icon: BookOpen, label: "Practice Exams", value: "500+" },
{ icon: Zap, label: "Instant Feedback", value: "Always" },
{ icon: CheckCircle, label: "Exam Readiness", value: "100%" }
]}
metricsAnimation="slide-up"
/>
</div>
<div id="metrics" data-section="metrics">
@@ -164,7 +170,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[{ items: [{ label: "Product", href: "#products" }, { label: "Pricing", href: "#pricing" }] }]}
logoText="LearnAI"
logoText="zn class"
/>
</div>
</ReactLenis>