4 Commits

Author SHA1 Message Date
0ec5719f18 Update src/app/page.tsx 2025-12-26 13:41:48 +00:00
cc25a0bac4 Update src/app/layout.tsx 2025-12-26 13:41:47 +00:00
ac4efc07e2 Update src/app/page.tsx 2025-12-26 13:39:30 +00:00
7e20acc10b Update src/app/page.tsx 2025-12-26 13:37:08 +00:00
2 changed files with 35 additions and 22 deletions

View File

@@ -12,7 +12,8 @@ import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
import FaqBase from '@/components/sections/faq/FaqBase'; import FaqBase from '@/components/sections/faq/FaqBase';
import ContactText from '@/components/sections/contact/ContactText'; import ContactText from '@/components/sections/contact/ContactText';
import FooterBaseSocial from '@/components/sections/footer/FooterBaseSocial'; import FooterBaseSocial from '@/components/sections/footer/FooterBaseSocial';
import { Zap, Target, Sparkles, Rocket, Award, Users, HelpCircle, Youtube, Linkedin, Twitter, Github, Star } from "lucide-react"; import TextNumberCount from '@/components/text/TextNumberCount';
import { Zap, Target, Sparkles, Rocket, Award, Users, HelpCircle, Youtube, Linkedin, Twitter, Github } from "lucide-react";
export default function Page() { export default function Page() {
return ( return (
@@ -240,28 +241,32 @@ export default function Page() {
name: "Robert Chen", name: "Robert Chen",
role: "Senior Developer & Course Lead", role: "Senior Developer & Course Lead",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484712325-ocj12p51.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484712325-ocj12p51.jpg",
imageAlt: "Robert Chen" imageAlt: "Robert Chen",
rating: 5
}, },
{ {
id: "2", id: "2",
name: "Lisa Patterson", name: "Lisa Patterson",
role: "Cybersecurity Specialist", role: "Cybersecurity Specialist",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484716089-kpbfo3ho.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484716089-kpbfo3ho.jpg",
imageAlt: "Lisa Patterson" imageAlt: "Lisa Patterson",
rating: 5
}, },
{ {
id: "3", id: "3",
name: "James Wilson", name: "James Wilson",
role: "Full Stack Developer", role: "Full Stack Developer",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492697041-9adqfrju.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492697041-9adqfrju.jpg",
imageAlt: "James Wilson" imageAlt: "James Wilson",
rating: 5
}, },
{ {
id: "4", id: "4",
name: "Amanda Foster", name: "Amanda Foster",
role: "Data Science Mentor", role: "Data Science Mentor",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484718833-8686x51w.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484718833-8686x51w.jpg",
imageAlt: "Amanda Foster" imageAlt: "Amanda Foster",
rating: 5
} }
]} ]}
animationType="slide-up" animationType="slide-up"
@@ -386,21 +391,29 @@ export default function Page() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <div className="flex flex-col items-center justify-center gap-6 py-20">
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." <div className="text-center">
animationType="reveal-blur" <h2 className="text-4xl font-bold mb-4">Our Users</h2>
buttons={[ <div className="flex items-baseline justify-center gap-2">
{ <TextNumberCount value={1000} suffix="+ people" className="text-6xl font-extrabold" />
text: "Contact Us", </div>
href: "contact" </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."
text: "Schedule a Call", animationType="reveal-blur"
href: "contact" buttons={[
} {
]} text: "Contact Us",
useInvertedBackground="noInvert" href: "contact"
/> },
{
text: "Schedule a Call",
href: "contact"
}
]}
useInvertedBackground="noInvert"
/>
</div>
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">