From 4862f7541b4ee5fb44b3bc872ad748479eb46b7a Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 13:33:43 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index c3c0951..3e6bc91 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -79,7 +79,8 @@ export default function BlogPage() { const url = `${apiUrl}/posts/${projectId}?status=published`; const response = await fetch(url, { method: "GET", headers: { - "Content-Type": "application/json"}, + "Content-Type": "application/json" + }, }); if (response.ok) { @@ -164,7 +165,7 @@ export default function BlogPage() { }, { title: "Company", items: [ - {label: "About Us", href: "about"}, + {label: "About Us", href: "/"}, {label: "Our Team", href: "team"}, {label: "Careers", href: "contact"} ] @@ -182,4 +183,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 4b217de7935a292951ab65c168bef291134b93b2 Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 13:33:44 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 26abf97..7fe3432 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1261,4 +1261,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From 8159649c60710035ea257d01e614125f6e808438 Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 13:33:44 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 199c298..8a323d9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; @@ -235,4 +235,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 04792d0b7178dd78ec8bbd69221b78313c1ab00c Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 13:33:45 +0000 Subject: [PATCH 4/4] Add src/app/products/page.tsx --- src/app/products/page.tsx | 127 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 127 insertions(+) create mode 100644 src/app/products/page.tsx diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..493467f --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,127 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import { Zap, Heart } from 'lucide-react'; + +export default function ProductsPage() { + const products = [ + { + id: "1", name: "Advanced Python Course", price: "$299", variant: "Lifetime Access · 40 Hours", imageSrc: "https://img.b2bpic.net/free-photo/person-computing-software-code-laptop_482257-85707.jpg", imageAlt: "Python programming course", isFavorited: false, + onFavorite: () => console.log("Favorited product 1"), + onProductClick: () => console.log("Clicked product 1") + }, + { + id: "2", name: "Web Development Bootcamp", price: "$499", variant: "12 Weeks · Job Guarantee", imageSrc: "https://img.b2bpic.net/free-photo/side-view-attractive-hispanic-developer-programming-software-using-computer-while-working-from-home_662251-988.jpg", imageAlt: "Web development course", isFavorited: false, + onFavorite: () => console.log("Favorited product 2"), + onProductClick: () => console.log("Clicked product 2") + }, + { + id: "3", name: "Data Science Masterclass", price: "$399", variant: "14 Weeks · Certification", imageSrc: "https://img.b2bpic.net/free-photo/man-working-energy-innovations-his-laptop_23-2148820170.jpg", imageAlt: "Data science course", isFavorited: false, + onFavorite: () => console.log("Favorited product 3"), + onProductClick: () => console.log("Clicked product 3") + }, + { + id: "4", name: "Cloud & DevOps Course", price: "$349", variant: "10 Weeks · Hands-on Labs", imageSrc: "https://img.b2bpic.net/free-photo/spacious-area-group-young-people-casual-clothes-working-modern-office_146671-16510.jpg", imageAlt: "Cloud and DevOps training", isFavorited: false, + onFavorite: () => console.log("Favorited product 4"), + onProductClick: () => console.log("Clicked product 4") + } + ]; + + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1