9 Commits

Author SHA1 Message Date
2d728c2070 Update src/app/page.tsx 2025-12-28 09:07:23 +00:00
2db5411ff9 Update src/app/page.tsx 2025-12-28 09:05:09 +00:00
50d2277262 Update src/app/page.tsx 2025-12-28 08:39:00 +00:00
9c8fa50c52 Update src/app/page.tsx 2025-12-28 08:36:41 +00:00
6f24847cb7 Update src/app/globals.css 2025-12-28 08:23:31 +00:00
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 29 additions and 46 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #1a1a1a;
--card: #2d2d2d;
--foreground: #ffffff;
--primary-cta: #ff0000;
--secondary-cta: #000000;
--accent: #ff3333;
--background-accent: #333333;
--background: #0a0a0a;
--card: #1a1a1a;
--foreground: #fff0f0e6;
--primary-cta: #ff3d4a;
--secondary-cta: #1a1a1a;
--accent: #7b2d2d;
--background-accent: #b8111f;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -1265,4 +1265,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -12,7 +12,6 @@ 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";
export default function Page() {
@@ -91,7 +90,6 @@ export default function Page() {
<ParallaxAbout
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."
titleClassName="text-white"
tag="About Us"
tagIcon={Target}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672728464-s6bmwda4.jpg"
@@ -140,7 +138,7 @@ export default function Page() {
text: "View All Programs",
href: "courses"
}
]}
]
/>
</div>
@@ -181,7 +179,6 @@ export default function Page() {
}
]}
gridVariant="uniform-all-items-equal"
carouselMode="buttons"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground="noInvert"
@@ -241,32 +238,28 @@ export default function Page() {
name: "Robert Chen",
role: "Senior Developer & Course Lead",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484712325-ocj12p51.jpg",
imageAlt: "Robert Chen",
rating: 5
imageAlt: "Robert Chen"
},
{
id: "2",
name: "Lisa Patterson",
role: "Cybersecurity Specialist",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484716089-kpbfo3ho.jpg",
imageAlt: "Lisa Patterson",
rating: 5
imageAlt: "Lisa Patterson"
},
{
id: "3",
name: "James Wilson",
role: "Full Stack Developer",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492697041-9adqfrju.jpg",
imageAlt: "James Wilson",
rating: 5
imageAlt: "James Wilson"
},
{
id: "4",
name: "Amanda Foster",
role: "Data Science Mentor",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484718833-8686x51w.jpg",
imageAlt: "Amanda Foster",
rating: 5
imageAlt: "Amanda Foster"
}
]}
animationType="slide-up"
@@ -340,7 +333,6 @@ export default function Page() {
}
]}
gridVariant="uniform-all-items-equal"
carouselMode="buttons"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground="noInvert"
@@ -391,35 +383,26 @@ 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."
buttons={[
{
text: "Contact Us",
href: "contact"
},
{
text: "Schedule a Call",
href: "contact"
}
]}
useInvertedBackground="noInvert"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseSocial
logoText="Start Code"
description="Empowering the next generation of IT professionals with quality education and career support."
logoText="Start Code"
copyrightText="© 2025 Start Code. All rights reserved."
columns={[
{
@@ -504,4 +487,4 @@ export default function Page() {
</div>
</ThemeProvider>
);
}
}