Update src/app/dashboard/page.tsx
This commit is contained in:
@@ -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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -25,22 +25,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Generator",
|
||||
id: "/generator",
|
||||
},
|
||||
{
|
||||
name: "Pricing",
|
||||
id: "/pricing",
|
||||
},
|
||||
{
|
||||
name: "Dashboard",
|
||||
id: "/dashboard",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Generator", id: "/generator" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Dashboard", id: "/dashboard" }
|
||||
]}
|
||||
brandName="Pathvo AI"
|
||||
/>
|
||||
@@ -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" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -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" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -84,30 +64,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Pricing",
|
||||
href: "/pricing",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Admin",
|
||||
href: "/admin-login",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "About", href: "/about" }, { label: "Pricing", href: "/pricing" }] },
|
||||
{ items: [{ label: "Contact", href: "/contact" }, { label: "Admin", href: "/admin-login" }] }
|
||||
]}
|
||||
logoText="Pathvo AI"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user