6 Commits

Author SHA1 Message Date
cf79ae657d Merge version_8 into main
Merge version_8 into main
2026-01-27 14:13:41 +00:00
da84509f96 Merge version_5 into main
Merge version_5 into main
2026-01-27 14:05:14 +00:00
6ce5855e95 revert 3a5a414545
revert Merge version_3 into main

Merge version_3 into main
2026-01-27 13:59:57 +00:00
3a5a414545 Merge version_3 into main
Merge version_3 into main
2026-01-27 13:58:39 +00:00
e52745cbb1 Merge pull request 'fix' (#2) from version_2 into main
Reviewed-on: #2
2026-01-27 13:54:53 +00:00
8707f49092 Merge version_2 into main
Merge version_2 into main
2026-01-27 13:45:59 +00:00

View File

@@ -10,9 +10,7 @@ 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, Users, Clock, HeadphonesIcon, Globe } from "lucide-react";
import AboutMetric from "@/components/sections/about/AboutMetric";
import EmailSignupForm from "@/components/form/EmailSignupForm";
import { Sparkles, Award, Rocket, Linkedin, Twitter, Github, Mail } from "lucide-react";
export default function LandingPage() {
return (
@@ -79,36 +77,6 @@ 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?"
@@ -249,6 +217,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>
<div id="footer" data-section="footer">
<FooterCard
logoText="TechAcademy"
@@ -273,19 +254,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>
</ThemeProvider>
);
}