Update src/app/dashboard/page.tsx
This commit is contained in:
@@ -5,11 +5,19 @@ import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwe
|
||||
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
||||
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
|
||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||
import { Sparkles, Crown, ScrollText, Award } from "lucide-react";
|
||||
|
||||
export default function DashboardPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Dashboard", id: "/dashboard" },
|
||||
{ name: "Missions", id: "/missions" },
|
||||
{ name: "Skill Tree", id: "/skill-tree" },
|
||||
{ name: "Achievements", id: "/achievements" },
|
||||
{ name: "Leaderboard", id: "/leaderboard" },
|
||||
{ name: "Community", id: "/community" },
|
||||
{ name: "Profile", id: "/profile" },
|
||||
{ name: "Settings", id: "/settings" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
@@ -17,6 +25,28 @@ export default function DashboardPage() {
|
||||
items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Dashboard", href: "/dashboard" },
|
||||
{ label: "Missions", href: "/missions" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Skill Tree", href: "/skill-tree" },
|
||||
{ label: "Achievements", href: "/achievements" },
|
||||
{ label: "Leaderboard", href: "/leaderboard" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Community", href: "/community" },
|
||||
{ label: "Profile", href: "/profile" },
|
||||
{ label: "Settings", href: "/settings" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "/privacy" },
|
||||
{ label: "Terms of Service", href: "/terms" },
|
||||
{ label: "Contact Us", href: "/contact" },
|
||||
],
|
||||
},
|
||||
];
|
||||
@@ -83,7 +113,7 @@ export default function DashboardPage() {
|
||||
reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/portrait-person-with-magical-wings-fairy-core-aesthetic_23-2151080002.jpg", imageAlt: "Angelic Wings cosmetic"},
|
||||
{
|
||||
id: "p5", brand: "Utility", name: "Skill Respec Token", price: "$5.00", rating: 4,
|
||||
reviewCount: "90", imageSrc: "http://img.b2bpic.net/free-photo/top-view-beautiful-rpg-still-life-items_23-2149282445.jpg?_wi=1", imageAlt: "Skill Respec Token"},
|
||||
reviewCount: "90", imageSrc: "http://img.b2bpic.net/free-photo/top-view-beautiful-rpg-still-life-items_23-2149282445.jpg", imageAlt: "Skill Respec Token"},
|
||||
{
|
||||
id: "p6", brand: "Boosters", name: "Creative Spark Pack", price: "$12.00", rating: 5,
|
||||
reviewCount: "110", imageSrc: "http://img.b2bpic.net/free-photo/messy-office-workplace-workplace-workspace-concept_185193-108721.jpg", imageAlt: "Creative Spark Pack"},
|
||||
@@ -121,7 +151,6 @@ export default function DashboardPage() {
|
||||
logoAlt="Creator Quest RPG Logo"
|
||||
logoText="Creator Quest RPG"
|
||||
columns={footerColumns}
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user