Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 27b1b4f49a | |||
| 02080acd3a | |||
| 76e3c5c0e2 |
@@ -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: #1a1a1a;
|
||||
--card: #2d2d2d;
|
||||
--foreground: #ffffff;
|
||||
--primary-cta: #ff0000;
|
||||
--secondary-cta: #000000;
|
||||
--accent: #ff3333;
|
||||
--background-accent: #333333;
|
||||
|
||||
/* 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;
|
||||
}
|
||||
@@ -5,7 +5,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
|
||||
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
||||
import ParallaxAbout from '@/components/sections/about/ParallaxAbout';
|
||||
import FeatureCardTwenty from '@/components/sections/feature/FeatureCardTwenty';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import ProductCardSix from '@/components/sections/product/ProductCardSix';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import TeamCardFive from '@/components/sections/team/TeamCardFive';
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
@@ -89,6 +89,7 @@ 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"
|
||||
@@ -142,7 +143,7 @@ export default function Page() {
|
||||
</div>
|
||||
|
||||
<div id="courses" data-section="courses">
|
||||
<ProductCardTwo
|
||||
<ProductCardSix
|
||||
title="Our IT Courses"
|
||||
description="Choose from our carefully designed courses tailored to match industry demands and career advancement opportunities."
|
||||
tag="Enrollment"
|
||||
@@ -150,46 +151,35 @@ export default function Page() {
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
brand: "Start Code",
|
||||
name: "Web Development Fundamentals",
|
||||
price: "$499",
|
||||
rating: 5,
|
||||
reviewCount: "1.2k",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672731963-dy25hbg0.jpg",
|
||||
imageAlt: "Web Development course"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
brand: "Start Code",
|
||||
name: "Python Programming Essentials",
|
||||
price: "$449",
|
||||
rating: 5,
|
||||
reviewCount: "980",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766740382604-lxm5r8ne.jpg",
|
||||
imageAlt: "Python Programming course"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
brand: "Start Code",
|
||||
name: "Data Science & Analytics",
|
||||
price: "$599",
|
||||
rating: 5,
|
||||
reviewCount: "850",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766750472136-03c1edmk.jpg",
|
||||
imageAlt: "Data Science course"
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
brand: "Start Code",
|
||||
name: "Cybersecurity Mastery",
|
||||
price: "$649",
|
||||
rating: 5,
|
||||
reviewCount: "745",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766750473080-tf9sz4t0.jpg",
|
||||
imageAlt: "Cybersecurity course"
|
||||
}
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
carouselMode="buttons"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
|
||||
Reference in New Issue
Block a user