Update src/app/courses/page.tsx

This commit is contained in:
2026-01-16 12:56:44 +00:00
parent 8f156f8982
commit 6a91b0453f

View File

@@ -42,46 +42,22 @@ export default function CoursesPage() {
tagIcon={Sparkles}
features={[
{
id: "1",
title: "Web Development",
description: "Master frontend and backend technologies including React, Node.js, and modern frameworks",
tag: "Full Stack",
imageSrc: "https://img.b2bpic.net/free-photo/html-css-collage-concept_23-2150061960.jpg",
imageAlt: "web development coding HTML CSS JavaScript",
buttons: [
id: "1", title: "Web Development", description: "Master frontend and backend technologies including React, Node.js, and modern frameworks", tag: "Full Stack", imageSrc: "https://img.b2bpic.net/free-photo/html-css-collage-concept_23-2150061960.jpg", imageAlt: "web development coding HTML CSS JavaScript", buttons: [
{ text: "Learn More", href: "courses" }
]
},
{
id: "2",
title: "Mobile Application Development",
description: "Build native and cross-platform applications for iOS and Android with industry best practices",
tag: "Mobile First",
imageSrc: "https://img.b2bpic.net/free-photo/people-working-with-ai-operated-devices_23-2151922479.jpg",
imageAlt: "mobile app iOS Android development design",
buttons: [
id: "2", title: "Mobile Application Development", description: "Build native and cross-platform applications for iOS and Android with industry best practices", tag: "Mobile First", imageSrc: "https://img.b2bpic.net/free-photo/people-working-with-ai-operated-devices_23-2151922479.jpg", imageAlt: "mobile app iOS Android development design", buttons: [
{ text: "Learn More", href: "courses" }
]
},
{
id: "3",
title: "Data Science & AI",
description: "Explore machine learning, data analytics, and artificial intelligence with hands-on projects",
tag: "Advanced",
imageSrc: "https://img.b2bpic.net/free-photo/programming-background-with-person-working-with-codes-computer_23-2150010127.jpg",
imageAlt: "data science analytics Python machine learning AI",
buttons: [
id: "3", title: "Data Science & AI", description: "Explore machine learning, data analytics, and artificial intelligence with hands-on projects", tag: "Advanced", imageSrc: "https://img.b2bpic.net/free-photo/programming-background-with-person-working-with-codes-computer_23-2150010127.jpg", imageAlt: "data science analytics Python machine learning AI", buttons: [
{ text: "Learn More", href: "courses" }
]
},
{
id: "4",
title: "Cloud & DevOps",
description: "Learn cloud deployment, containerization, and infrastructure automation on AWS and Azure",
tag: "Cloud",
imageSrc: "https://img.b2bpic.net/free-photo/programming-background-with-person-working-with-codes-computer_23-2150010129.jpg",
imageAlt: "cloud computing AWS database server infrastructure",
buttons: [
id: "4", title: "Cloud & DevOps", description: "Learn cloud deployment, containerization, and infrastructure automation on AWS and Azure", tag: "Cloud", imageSrc: "https://img.b2bpic.net/free-photo/programming-background-with-person-working-with-codes-computer_23-2150010129.jpg", imageAlt: "cloud computing AWS database server infrastructure", buttons: [
{ text: "Learn More", href: "courses" }
]
}
@@ -104,25 +80,13 @@ export default function CoursesPage() {
gridVariant="three-columns-all-equal-width"
products={[
{
id: "1",
name: "Full Stack Web Development",
price: "6-Week Intensive",
imageSrc: "https://img.b2bpic.net/free-photo/team-database-admins-analyzing-source-code-wall-screen-tv-comparing-errors-using-digital-tablet-busy-server-room-two-cloud-programers-debugging-algorithm-software-innovation-office_482257-43976.jpg",
imageAlt: "Full Stack Web Development Course"
id: "1", name: "Full Stack Web Development", price: "6-Week Intensive", imageSrc: "https://img.b2bpic.net/free-photo/team-database-admins-analyzing-source-code-wall-screen-tv-comparing-errors-using-digital-tablet-busy-server-room-two-cloud-programers-debugging-algorithm-software-innovation-office_482257-43976.jpg", imageAlt: "Full Stack Web Development Course"
},
{
id: "2",
name: "Mobile App Mastery",
price: "8-Week Program",
imageSrc: "https://img.b2bpic.net/free-photo/turned-gray-laptop-computer_400718-47.jpg",
imageAlt: "Mobile App Development Course"
id: "2", name: "Mobile App Mastery", price: "8-Week Program", imageSrc: "https://img.b2bpic.net/free-photo/turned-gray-laptop-computer_400718-47.jpg", imageAlt: "Mobile App Development Course"
},
{
id: "3",
name: "Data Science Bootcamp",
price: "10-Week Course",
imageSrc: "https://img.b2bpic.net/free-photo/programming-background-collage_23-2149901771.jpg",
imageAlt: "Data Science Bootcamp"
id: "3", name: "Data Science Bootcamp", price: "10-Week Course", imageSrc: "https://img.b2bpic.net/free-photo/programming-background-collage_23-2149901771.jpg", imageAlt: "Data Science Bootcamp"
}
]}
/>
@@ -133,8 +97,7 @@ export default function CoursesPage() {
copyrightText="© 2025 Engineer IT School. All rights reserved."
columns={[
{
title: "Programs",
items: [
title: "Programs", items: [
{ label: "Web Development", href: "courses" },
{ label: "Mobile Development", href: "courses" },
{ label: "Data Science", href: "courses" },
@@ -142,8 +105,7 @@ export default function CoursesPage() {
]
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About", href: "about" },
{ label: "Team", href: "instructors" },
{ label: "Blog", href: "blog" },
@@ -151,8 +113,7 @@ export default function CoursesPage() {
]
},
{
title: "Resources",
items: [
title: "Resources", items: [
{ label: "FAQ", href: "faq" },
{ label: "Contact Us", href: "contact" },
{ label: "Alumni", href: "alumni" },
@@ -163,4 +124,4 @@ export default function CoursesPage() {
/>
</ThemeProvider>
);
}
}