Compare commits
4 Commits
bcf83fcf73
...
version_14
| Author | SHA1 | Date | |
|---|---|---|---|
| 2b2911503d | |||
| a606571c6d | |||
| 14698e950e | |||
| 54c47bce2a |
@@ -10,8 +10,9 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
|
|||||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||||
import { Sparkles, Award, Rocket, Linkedin, Twitter, Github, Mail } from "lucide-react";
|
import { Sparkles, Award, Rocket, Linkedin, Twitter, Github, Mail, Users, Clock, HeadphonesIcon, Globe } from "lucide-react";
|
||||||
import HeroLogo from "@/components/sections/hero/HeroLogo";
|
import AboutMetric from "@/components/sections/about/AboutMetric";
|
||||||
|
import EmailSignupForm from "@/components/form/EmailSignupForm";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -44,25 +45,80 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogo
|
<HeroBillboardGallery
|
||||||
logoText="Sample logoText"
|
title="Master In-Demand Tech Skills"
|
||||||
description="Unlock your potential with cutting-edge tech education."
|
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={[
|
buttons={[
|
||||||
|
{
|
||||||
|
text: "View Courses", href: "features"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: "Get Started", href: "contact"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="hero-new" data-section="hero-new">
|
||||||
|
<AboutMetric
|
||||||
|
title="Unlocking Tech Potential"
|
||||||
|
metrics={[
|
||||||
{
|
{
|
||||||
"text": "Get Started",
|
"icon": Users,
|
||||||
"href": "#"
|
"label": "Happy Customers",
|
||||||
|
"value": "10K+"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"text": "Learn More",
|
"icon": Clock,
|
||||||
"href": "#"
|
"label": "Uptime",
|
||||||
|
"value": "99.9%"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": HeadphonesIcon,
|
||||||
|
"label": "Support",
|
||||||
|
"value": "24/7"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"icon": Globe,
|
||||||
|
"label": "Countries",
|
||||||
|
"value": "50+"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
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"
|
useInvertedBackground="noInvert"
|
||||||
imageAlt=""
|
ariaLabel="About metrics section"
|
||||||
videoAriaLabel="Hero video"
|
/>
|
||||||
showDimOverlay={false}
|
</div>
|
||||||
logoLineHeight={1.1}
|
|
||||||
ariaLabel="Hero section"
|
<div id="contact" data-section="contact">
|
||||||
|
<ContactCenter
|
||||||
|
tag="Get Started"
|
||||||
|
title="Ready to Transform Your Tech Career?"
|
||||||
|
description="Join hundreds of successful graduates who've built rewarding careers in technology. Sign up now to learn more about enrollment and get exclusive access to course previews."
|
||||||
|
tagIcon={Rocket}
|
||||||
|
inputPlaceholder="Enter your email address"
|
||||||
|
buttonText="Enroll Now"
|
||||||
|
termsText="By enrolling, you'll receive course information and updates. We respect your privacy and you can unsubscribe anytime."
|
||||||
|
useInvertedBackground="noInvert"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -206,19 +262,6 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
|
||||||
<ContactCenter
|
|
||||||
tag="Get Started"
|
|
||||||
title="Ready to Transform Your Tech Career?"
|
|
||||||
description="Join hundreds of successful graduates who've built rewarding careers in technology. Sign up now to learn more about enrollment and get exclusive access to course previews."
|
|
||||||
tagIcon={Rocket}
|
|
||||||
inputPlaceholder="Enter your email address"
|
|
||||||
buttonText="Enroll Now"
|
|
||||||
termsText="By enrolling, you'll receive course information and updates. We respect your privacy and you can unsubscribe anytime."
|
|
||||||
useInvertedBackground="noInvert"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterCard
|
<FooterCard
|
||||||
logoText="TechAcademy"
|
logoText="TechAcademy"
|
||||||
|
|||||||
Reference in New Issue
Block a user