Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cd6f5f216b |
@@ -1,17 +1,17 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
||||||
import ParallaxAbout from '@/components/sections/about/ParallaxAbout';
|
import ParallaxAbout from '@/components/sections/about/ParallaxAbout';
|
||||||
import FeatureCardTwenty from '@/components/sections/feature/FeatureCardTwenty';
|
import FeatureCardTwenty from '@/components/sections/feature/FeatureCardTwenty';
|
||||||
import ProductCardSeven from '@/components/sections/product/ProductCardSeven';
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
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 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 { 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, Star } from "lucide-react";
|
||||||
|
|
||||||
export default function Page() {
|
export default function Page() {
|
||||||
return (
|
return (
|
||||||
@@ -142,7 +142,7 @@ export default function Page() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="courses" data-section="courses">
|
<div id="courses" data-section="courses">
|
||||||
<ProductCardSeven
|
<ProductCardTwo
|
||||||
title="Our IT Courses"
|
title="Our IT Courses"
|
||||||
description="Choose from our carefully designed courses tailored to match industry demands and career advancement opportunities."
|
description="Choose from our carefully designed courses tailored to match industry demands and career advancement opportunities."
|
||||||
tag="Enrollment"
|
tag="Enrollment"
|
||||||
@@ -150,29 +150,41 @@ export default function Page() {
|
|||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1",
|
||||||
|
brand: "Start Code",
|
||||||
name: "Web Development Fundamentals",
|
name: "Web Development Fundamentals",
|
||||||
price: "$499",
|
price: "$499",
|
||||||
|
rating: 5,
|
||||||
|
reviewCount: "1.2k",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672731963-dy25hbg0.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766672731963-dy25hbg0.jpg",
|
||||||
imageAlt: "Web Development course"
|
imageAlt: "Web Development course"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2",
|
||||||
|
brand: "Start Code",
|
||||||
name: "Python Programming Essentials",
|
name: "Python Programming Essentials",
|
||||||
price: "$449",
|
price: "$449",
|
||||||
|
rating: 5,
|
||||||
|
reviewCount: "980",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766740382604-lxm5r8ne.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766740382604-lxm5r8ne.jpg",
|
||||||
imageAlt: "Python Programming course"
|
imageAlt: "Python Programming course"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3",
|
||||||
|
brand: "Start Code",
|
||||||
name: "Data Science & Analytics",
|
name: "Data Science & Analytics",
|
||||||
price: "$599",
|
price: "$599",
|
||||||
|
rating: 5,
|
||||||
|
reviewCount: "850",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766750472136-03c1edmk.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766750472136-03c1edmk.jpg",
|
||||||
imageAlt: "Data Science course"
|
imageAlt: "Data Science course"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4",
|
||||||
|
brand: "Start Code",
|
||||||
name: "Cybersecurity Mastery",
|
name: "Cybersecurity Mastery",
|
||||||
price: "$649",
|
price: "$649",
|
||||||
|
rating: 5,
|
||||||
|
reviewCount: "745",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766750473080-tf9sz4t0.jpg",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766750473080-tf9sz4t0.jpg",
|
||||||
imageAlt: "Cybersecurity course"
|
imageAlt: "Cybersecurity course"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user