Update src/app/page.tsx

This commit is contained in:
2026-01-27 17:05:45 +00:00
parent bcf83fcf73
commit 3f428eeac2

View File

@@ -11,7 +11,6 @@ import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Sparkles, Award, Rocket, Linkedin, Twitter, Github, Mail } from "lucide-react";
import HeroLogo from "@/components/sections/hero/HeroLogo";
export default function LandingPage() {
return (
@@ -44,25 +43,37 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroLogo
logoText="Sample logoText"
description="Unlock your potential with cutting-edge tech education."
<HeroBillboardGallery
title="Master In-Demand Tech Skills"
description="Learn from industry experts in our comprehensive IT courses. From web development to data science, gain practical skills and launch your tech career."
tag="Start Learning Today"
tagIcon={Sparkles}
background={{ variant: "radial-gradient" }}
mediaItems={[
{
imageSrc: "https://img.b2bpic.net/free-photo/medium-shot-people-working-laptops_23-2149739424.jpg", imageAlt: "Students learning online"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/two-teenage-friends-playing-video-games-together-home_23-2149332883.jpg", imageAlt: "Programming course"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/friends-having-fun-together_23-2149329703.jpg", imageAlt: "Tech classroom"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/row-serious-focused-coworkers-sitting-table-typing-laptops_74855-10363.jpg", imageAlt: "Instructor teaching"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/medium-shot-people-working-laptops_23-2149739424.jpg", imageAlt: "Learning environment"
}
]}
buttons={[
{
"text": "Get Started",
"href": "#"
},
{
"text": "Learn More",
"href": "#"
}
]}
imageSrc="https://images.unsplash.com/photo-1526779259212-939e64788e3c?fm=jpg&q=60&w=3000&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8ZnJlZSUyMGltYWdlc3xlbnwwfHwwfHx8MA%3D%3D"
imageAlt=""
videoAriaLabel="Hero video"
showDimOverlay={false}
logoLineHeight={1.1}
ariaLabel="Hero section"
{
text: "View Courses", href: "features"
},
{
text: "Get Started", href: "contact"
}
]}
/>
</div>
@@ -120,19 +131,19 @@ export default function LandingPage() {
description="Choose the plan that fits your learning goals and budget"
plans={[
{
id: "starter", tag: "Beginner Plan", price: "$99", period: "/month", description: "Perfect for those starting their tech journey with foundational knowledge.", button: { text: "Get Started", href: "contact" },
id: "starter", tag: "Beginner Plan", price: "$199", period: "/month", description: "Perfect for those starting their tech journey with foundational knowledge.", button: { text: "Get Started", href: "contact" },
featuresTitle: "What's Included:", features: [
"Access to 3 foundational courses", "Weekly live Q&A sessions", "Course materials and resources", "Community forum access", "Certificate of completion"
]
},
{
id: "professional", tag: "Professional Plan", price: "$199", period: "/month", description: "Our most popular plan for serious learners aiming for career advancement.", button: { text: "Enroll Now", href: "contact" },
id: "professional", tag: "Professional Plan", price: "$399", period: "/month", description: "Our most popular plan for serious learners aiming for career advancement.", button: { text: "Enroll Now", href: "contact" },
featuresTitle: "What's Included:", features: [
"Access to 8 professional courses", "2 weeks of 1-on-1 mentorship", "Priority support via Slack", "Job preparation bootcamp", "Resume and portfolio review", "Interview coaching sessions"
]
},
{
id: "enterprise", tag: "Enterprise Plan", price: "$399", period: "/month", description: "Comprehensive program for those committed to mastering multiple tech domains.", button: { text: "Start Premium", href: "contact" },
id: "enterprise", tag: "Enterprise Plan", price: "$799", period: "/month", description: "Comprehensive program for those committed to mastering multiple tech domains.", button: { text: "Start Premium", href: "contact" },
featuresTitle: "What's Included:", features: [
"Unlimited course access", "Unlimited 1-on-1 mentorship", "Personalized learning path", "Career placement assistance", "Lifetime community access", "Advanced capstone project guidance", "Direct instructor access"
]
@@ -245,4 +256,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}