From fc44085f5ec2f3774c55ca48c10c8935b2ecb20e Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 4 Apr 2026 16:22:30 +0000 Subject: [PATCH 1/2] Update src/app/dashboard/page.tsx --- src/app/dashboard/page.tsx | 64 +++++++------------------------------- 1 file changed, 11 insertions(+), 53 deletions(-) diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 431ab0e..7c00694 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -7,7 +7,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; -export default function LandingPage() { +export default function DashboardPage() { return ( @@ -55,12 +43,7 @@ export default function LandingPage() { title="Your Saved Maps" description="Track your progress on your career journey." products={[ - { - id: "m1", - name: "Data Scientist Path", - price: "Active", - imageSrc: "http://img.b2bpic.net/free-photo/digital-transformation-corporate-wallpaper_53876-97646.jpg?_wi=7", - }, + { id: "m1", name: "Data Scientist Path", price: "Active", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/digital-transformation-corporate-wallpaper_53876-97646.jpg" } ]} /> @@ -71,12 +54,9 @@ export default function LandingPage() { title="Recommended Courses" description="Curated for your roadmap progress." products={[ - { - id: "c1", - name: "Advanced Python", - price: "$49", - imageSrc: "http://img.b2bpic.net/free-photo/fruits-blue-table-isolated-orange-near-mirrors_171337-13169.jpg?_wi=6", - }, + { id: "c1", name: "Advanced Python", price: "$49", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/fruits-blue-table-isolated-orange-near-mirrors_171337-13169.jpg" }, + { id: "c2", name: "React Mastery", price: "$59", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/digital-transformation-corporate-wallpaper_53876-97646.jpg" }, + { id: "c3", name: "UI/UX Fundamentals", price: "$39", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=7izvu0" } ]} /> @@ -84,30 +64,8 @@ export default function LandingPage() { @@ -251,16 +131,8 @@ export default function LandingPage() { description="Get quick answers to common questions about Pathvo AI." faqsAnimation="slide-up" faqs={[ - { - id: "1", - title: "How does it work?", - content: "Our AI analyzes your experience and goals to build a custom 30-day roadmap.", - }, - { - id: "2", - title: "Is it free?", - content: "We offer a free tier for basic roadmap generation with premium features available.", - }, + { id: "1", title: "How does it work?", content: "Our AI analyzes your experience and goals to build a custom 30-day roadmap." }, + { id: "2", title: "Is it free?", content: "We offer a free tier for basic roadmap generation with premium features available." } ]} /> @@ -268,48 +140,19 @@ export default function LandingPage() {