Compare commits
17 Commits
version_4
...
d3b9942c10
| Author | SHA1 | Date | |
|---|---|---|---|
| d3b9942c10 | |||
| 6fa849e484 | |||
| a4a7f29dc0 | |||
| 759dc760c1 | |||
| 3f8b39e5b9 | |||
| 0ec5719f18 | |||
| cc25a0bac4 | |||
| 22b3ae299d | |||
| ac4efc07e2 | |||
| a534ae12a6 | |||
| 7e20acc10b | |||
| 8e8c503883 | |||
| 8d2c14819b | |||
| 6efaff3603 | |||
| faa5e4630e | |||
| 30e1b0a80a | |||
| e976a8c26b |
@@ -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);
|
||||||
|
|||||||
@@ -1265,4 +1265,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import FeatureCardTwenty from '@/components/sections/feature/FeatureCardTwenty';
|
|||||||
import ProductCardSix from '@/components/sections/product/ProductCardSix';
|
import ProductCardSix from '@/components/sections/product/ProductCardSix';
|
||||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||||
import TeamCardFive from '@/components/sections/team/TeamCardFive';
|
import TeamCardFive from '@/components/sections/team/TeamCardFive';
|
||||||
|
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';
|
||||||
@@ -239,28 +240,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"
|
||||||
@@ -269,6 +274,78 @@ export default function Page() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</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"
|
||||||
|
carouselMode="buttons"
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground="noInvert"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
<FaqBase
|
<FaqBase
|
||||||
title="Frequently Asked Questions"
|
title="Frequently Asked Questions"
|
||||||
@@ -418,4 +495,4 @@ export default function Page() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user