5 Commits

Author SHA1 Message Date
cd4ab79614 Move section contact after footer 2026-01-27 20:55:34 +02:00
2b2911503d Move section contact after hero-new 2026-01-27 20:50:31 +02:00
a606571c6d Remove section: contact-new 2026-01-27 20:47:04 +02:00
14698e950e Section: Inserted EmailSignupForm section after contact 2026-01-27 19:23:29 +02:00
54c47bce2a 1 2026-01-27 19:20:18 +02:00

View File

@@ -10,7 +10,9 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
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 { Sparkles, Award, Rocket, Linkedin, Twitter, Github, Mail, Users, Clock, HeadphonesIcon, Globe } from "lucide-react";
import AboutMetric from "@/components/sections/about/AboutMetric";
import EmailSignupForm from "@/components/form/EmailSignupForm";
export default function LandingPage() {
return (
@@ -77,6 +79,36 @@ export default function LandingPage() {
/>
</div>
<div id="hero-new" data-section="hero-new">
<AboutMetric
title="Unlocking Tech Potential"
metrics={[
{
"icon": Users,
"label": "Happy Customers",
"value": "10K+"
},
{
"icon": Clock,
"label": "Uptime",
"value": "99.9%"
},
{
"icon": HeadphonesIcon,
"label": "Support",
"value": "24/7"
},
{
"icon": Globe,
"label": "Countries",
"value": "50+"
}
]}
useInvertedBackground="noInvert"
ariaLabel="About metrics section"
/>
</div>
<div id="about" data-section="about">
<MediaSplitTabsAbout
title="Why Choose TechAcademy?"
@@ -217,19 +249,6 @@ export default function LandingPage() {
/>
</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">
<FooterCard
logoText="TechAcademy"
@@ -254,6 +273,19 @@ export default function LandingPage() {
]}
/>
</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>
</ThemeProvider>
);
}