Compare commits
19 Commits
version_1
...
version_12
| Author | SHA1 | Date | |
|---|---|---|---|
| 2d728c2070 | |||
| 2db5411ff9 | |||
| 50d2277262 | |||
| 9c8fa50c52 | |||
| 6f24847cb7 | |||
| 4022edcd51 | |||
| 6fa849e484 | |||
| a4a7f29dc0 | |||
| 759dc760c1 | |||
| 0ec5719f18 | |||
| cc25a0bac4 | |||
| ac4efc07e2 | |||
| 7e20acc10b | |||
| 8d2c14819b | |||
| 6efaff3603 | |||
| 27b1b4f49a | |||
| 02080acd3a | |||
| 76e3c5c0e2 | |||
| cd6f5f216b |
@@ -4,13 +4,13 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
--background: #ffffff;;
|
||||
--card: #fcfcfc;;
|
||||
--foreground: #0f0600e6;;
|
||||
--primary-cta: #e8590c;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #e2e2e2;;
|
||||
--background-accent: #c4c4c4;;
|
||||
--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);
|
||||
@@ -495,7 +495,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-sora), sans-serif;
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -508,5 +508,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-sora), sans-serif;
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
}
|
||||
@@ -1265,4 +1265,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
||||
import ParallaxAbout from '@/components/sections/about/ParallaxAbout';
|
||||
import FeatureCardTwenty from '@/components/sections/feature/FeatureCardTwenty';
|
||||
import ProductCardSeven from '@/components/sections/product/ProductCardSeven';
|
||||
import ProductCardSix from '@/components/sections/product/ProductCardSix';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import TeamCardFive from '@/components/sections/team/TeamCardFive';
|
||||
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';
|
||||
@@ -137,12 +138,12 @@ export default function Page() {
|
||||
text: "View All Programs",
|
||||
href: "courses"
|
||||
}
|
||||
]}
|
||||
]
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="courses" data-section="courses">
|
||||
<ProductCardSeven
|
||||
<ProductCardSix
|
||||
title="Our IT Courses"
|
||||
description="Choose from our carefully designed courses tailored to match industry demands and career advancement opportunities."
|
||||
tag="Enrollment"
|
||||
@@ -267,6 +268,77 @@ export default function Page() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team-linkedin" data-section="team-linkedin">
|
||||
<TeamCardTwo
|
||||
title="Connect With Our Team"
|
||||
description="Follow our instructors on LinkedIn to stay updated with industry insights and career opportunities."
|
||||
tag="Social"
|
||||
tagIcon={Users}
|
||||
members={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Robert Chen",
|
||||
role: "Senior Developer & Course Lead",
|
||||
description: "Passionate about full-stack development and mentoring the next generation of tech professionals.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484712325-ocj12p51.jpg",
|
||||
imageAlt: "Robert Chen",
|
||||
socialLinks: [
|
||||
{
|
||||
icon: Linkedin,
|
||||
url: "https://linkedin.com/in/robertchen"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Lisa Patterson",
|
||||
role: "Cybersecurity Specialist",
|
||||
description: "Expert in network security and helping students build secure systems that protect organizations.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484716089-kpbfo3ho.jpg",
|
||||
imageAlt: "Lisa Patterson",
|
||||
socialLinks: [
|
||||
{
|
||||
icon: Linkedin,
|
||||
url: "https://linkedin.com/in/lisapatterson"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "James Wilson",
|
||||
role: "Full Stack Developer",
|
||||
description: "Specializes in modern web technologies and helps students master front-end and back-end development.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492697041-9adqfrju.jpg",
|
||||
imageAlt: "James Wilson",
|
||||
socialLinks: [
|
||||
{
|
||||
icon: Linkedin,
|
||||
url: "https://linkedin.com/in/jameswilson"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Amanda Foster",
|
||||
role: "Data Science Mentor",
|
||||
description: "Leads our data science curriculum and guides students in machine learning and AI applications.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766484718833-8686x51w.jpg",
|
||||
imageAlt: "Amanda Foster",
|
||||
socialLinks: [
|
||||
{
|
||||
icon: Linkedin,
|
||||
url: "https://linkedin.com/in/amandafoster"
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase
|
||||
title="Frequently Asked Questions"
|
||||
@@ -313,7 +385,6 @@ export default function Page() {
|
||||
<div id="contact" data-section="contact">
|
||||
<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",
|
||||
@@ -330,8 +401,8 @@ export default function Page() {
|
||||
|
||||
<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={[
|
||||
{
|
||||
@@ -416,4 +487,4 @@ export default function Page() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user