4 Commits

Author SHA1 Message Date
4022edcd51 Update src/app/page.tsx 2025-12-27 16:12:51 +00:00
6fa849e484 Update src/app/page.tsx 2025-12-27 16:10:35 +00:00
a4a7f29dc0 Update src/app/layout.tsx 2025-12-27 16:10:34 +00:00
759dc760c1 Update src/app/globals.css 2025-12-27 16:10:34 +00:00
3 changed files with 28 additions and 45 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #1a1a1a; --background: #fafffb;
--card: #2d2d2d; --card: #f7fffa;
--foreground: #ffffff; --foreground: #001a0a;
--primary-cta: #ff0000; --primary-cta: #0a7039;
--secondary-cta: #000000; --secondary-cta: #ffffff;
--accent: #ff3333; --accent: #a8d9be;
--background-accent: #333333; --background-accent: #6bbf8e;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -12,7 +12,6 @@ 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 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 } from "lucide-react";
export default function Page() { export default function Page() {
@@ -91,7 +90,6 @@ export default function Page() {
<ParallaxAbout <ParallaxAbout
title="Building Future Tech Leaders" title="Building Future Tech Leaders"
description="Start Code is dedicated to providing comprehensive IT education that bridges the gap between academic theory and real-world industry demands. Our expert instructors bring years of professional experience to every course, ensuring students gain practical skills needed for success." description="Start Code is dedicated to providing comprehensive IT education that bridges the gap between academic theory and real-world industry demands. Our expert instructors bring years of professional experience to every course, ensuring students gain practical skills needed for success."
titleClassName="text-white"
tag="About Us" tag="About Us"
tagIcon={Target} tagIcon={Target}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672728464-s6bmwda4.jpg" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672728464-s6bmwda4.jpg"
@@ -181,7 +179,6 @@ export default function Page() {
} }
]} ]}
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
carouselMode="buttons"
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
@@ -241,32 +238,28 @@ 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"
@@ -340,7 +333,6 @@ export default function Page() {
} }
]} ]}
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
carouselMode="buttons"
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
@@ -391,35 +383,26 @@ export default function Page() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<div className="flex flex-col items-center justify-center gap-6 py-20"> <ContactText
<div className="text-center"> 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."
<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">
<FooterBaseSocial <FooterBaseSocial
logoText="Start Code"
description="Empowering the next generation of IT professionals with quality education and career support." description="Empowering the next generation of IT professionals with quality education and career support."
logoText="Start Code"
copyrightText="© 2025 Start Code. All rights reserved." copyrightText="© 2025 Start Code. All rights reserved."
columns={[ columns={[
{ {