Update src/app/page.tsx

This commit is contained in:
2025-12-27 16:10:35 +00:00
parent a4a7f29dc0
commit 6fa849e484

View File

@@ -12,8 +12,7 @@ import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
import FaqBase from '@/components/sections/faq/FaqBase';
import ContactText from '@/components/sections/contact/ContactText';
import FooterBaseSocial from '@/components/sections/footer/FooterBaseSocial';
import TextNumberCount from '@/components/text/TextNumberCount';
import { Zap, Target, Sparkles, Rocket, Award, Users, HelpCircle, Youtube, Linkedin, Twitter, Github } from "lucide-react";
import { Zap, Target, Sparkles, Rocket, Award, Users, HelpCircle, Youtube, Linkedin, Twitter, Github, Star } from "lucide-react";
export default function Page() {
return (
@@ -391,29 +390,21 @@ export default function Page() {
</div>
<div id="contact" data-section="contact">
<div className="flex flex-col items-center justify-center gap-6 py-20">
<div className="text-center">
<h2 className="text-4xl font-bold mb-4">Our Users</h2>
<div className="flex items-baseline justify-center gap-2">
<TextNumberCount value={1000} suffix="+ people" className="text-6xl font-extrabold" />
</div>
</div>
<ContactText
text="Ready to transform your career in technology? Get in touch with our enrollment team to discuss your learning goals and find the perfect course for you."
animationType="reveal-blur"
buttons={[
{
text: "Contact Us",
href: "contact"
},
{
text: "Schedule a Call",
href: "contact"
}
]}
useInvertedBackground="noInvert"
/>
</div>
<ContactText
text="Ready to transform your career in technology? Get in touch with our enrollment team to discuss your learning goals and find the perfect course for you."
animationType="reveal-blur"
buttons={[
{
text: "Contact Us",
href: "contact"
},
{
text: "Schedule a Call",
href: "contact"
}
]}
useInvertedBackground="noInvert"
/>
</div>
<div id="footer" data-section="footer">
@@ -504,4 +495,4 @@ export default function Page() {
</div>
</ThemeProvider>
);
}
}