Update src/app/courses/page.tsx

This commit is contained in:
2026-01-20 14:25:31 +00:00
parent 2fe8e538fe
commit 340591c19c

View File

@@ -30,8 +30,7 @@ export default function CoursesPage() {
{ name: "FAQ", id: "faq" } { name: "FAQ", id: "faq" }
]} ]}
button={{ button={{
text: "Enroll Now", text: "Enroll Now", href: "/contact"
href: "/contact"
}} }}
/> />
</div> </div>
@@ -47,27 +46,19 @@ export default function CoursesPage() {
features={[ features={[
{ {
id: 1, id: 1,
title: "Fundamentals of Programming", title: "Fundamentals of Programming", description: "Master core programming concepts, data structures, algorithms, and best practices with hands-on coding exercises. Learn problem-solving techniques and build strong foundations in computer science principles.", imageSrc: "https://img.b2bpic.net/free-vector/realistic-responsive-website-design-collection_23-2149500090.jpg"
description: "Master core programming concepts, data structures, algorithms, and best practices with hands-on coding exercises. Learn problem-solving techniques and build strong foundations in computer science principles.",
imageSrc: "https://img.b2bpic.net/free-vector/realistic-responsive-website-design-collection_23-2149500090.jpg"
}, },
{ {
id: 2, id: 2,
title: "Web Development Mastery", title: "Web Development Mastery", description: "Build responsive websites using HTML, CSS, JavaScript, React, and modern web frameworks. Create professional portfolios and deploy full-stack applications with modern development tools.", imageSrc: "https://img.b2bpic.net/free-vector/realistic-responsive-website-design-collection_23-2149500090.jpg"
description: "Build responsive websites using HTML, CSS, JavaScript, React, and modern web frameworks. Create professional portfolios and deploy full-stack applications with modern development tools.",
imageSrc: "https://img.b2bpic.net/free-vector/realistic-responsive-website-design-collection_23-2149500090.jpg"
}, },
{ {
id: 3, id: 3,
title: "Mobile App Development", title: "Mobile App Development", description: "Create native and cross-platform mobile applications for iOS and Android with industry tools like React Native and Flutter. Learn app store deployment and mobile UI/UX principles.", imageSrc: "https://img.b2bpic.net/free-vector/laptop-with-tablet-smartphone-website-information_24877-53528.jpg"
description: "Create native and cross-platform mobile applications for iOS and Android with industry tools like React Native and Flutter. Learn app store deployment and mobile UI/UX principles.",
imageSrc: "https://img.b2bpic.net/free-vector/laptop-with-tablet-smartphone-website-information_24877-53528.jpg"
}, },
{ {
id: 4, id: 4,
title: "Backend Systems & Databases", title: "Backend Systems & Databases", description: "Design scalable backend architectures, APIs, and database systems with proven technologies. Master server deployment, cloud services, and enterprise-level system design patterns.", imageSrc: "https://img.b2bpic.net/free-photo/programming-software-code-application-technology-concept_53876-123931.jpg"
description: "Design scalable backend architectures, APIs, and database systems with proven technologies. Master server deployment, cloud services, and enterprise-level system design patterns.",
imageSrc: "https://img.b2bpic.net/free-photo/programming-software-code-application-technology-concept_53876-123931.jpg"
} }
]} ]}
/> />
@@ -110,4 +101,4 @@ export default function CoursesPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }