diff --git a/src/app/achievements/page.tsx b/src/app/achievements/page.tsx
index dec6cd6..24593ea 100644
--- a/src/app/achievements/page.tsx
+++ b/src/app/achievements/page.tsx
@@ -1,88 +1,55 @@
"use client";
-
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwentyThree";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
-import Link from "next/link";
-
-const navItems = [
- {
- label: "Home", href: "/"
- },
- {
- label: "Dashboard", href: "/dashboard"
- },
- {
- label: "Missions", href: "/missions"
- },
- {
- label: "Skill Tree", href: "/skill-tree"
- },
- {
- label: "Achievements", href: "/achievements"
- },
- {
- label: "Leaderboard", href: "/leaderboard"
- },
- {
- label: "Community", href: "/community"
- },
- {
- label: "Profile", href: "/profile"
- }
-];
-
-const achievementBadgesProducts = [
- {
- id: "a1", brand: "Milestone", name: "First Upload", price: "Unlocked", rating: 5,
- reviewCount: "New", imageSrc: "http://img.b2bpic.net/free-vector/purple-hexagon-frames-game-avatars_107791-18126.jpg", imageAlt: "First Upload Achievement Badge"
- },
- {
- id: "a2", brand: "Streak", name: "7-Day Streak", price: "Unlocked", rating: 5,
- reviewCount: "Consistent", imageSrc: "http://img.b2bpic.net/free-photo/top-view-champagne-bottle-table_23-2148578907.jpg", imageAlt: "7-Day Streak Achievement Badge"
- },
- {
- id: "a3", brand: "Volume", name: "100 Missions Completed", price: "Unlocked", rating: 5,
- reviewCount: "Dedicated", imageSrc: "http://img.b2bpic.net/free-vector/set-military-game-progress-badges_107791-19708.jpg", imageAlt: "100 Missions Completed Badge"
- },
- {
- id: "a4", brand: "Impact", name: "Viral Creator", price: "Unlocked", rating: 5,
- reviewCount: "Influencer", imageSrc: "http://img.b2bpic.net/free-photo/pleased-pretty-caucasian-woman-sitting-table-with-makeup-tools-holding-looking-winner-cup-isolated-purple-wall-with-copy-space_141793-121092.jpg?_wi=2", imageAlt: "Viral Creator Achievement Badge"
- },
- {
- id: "a5", brand: "Community", name: "Community Leader", price: "Unlocked", rating: 5,
- reviewCount: "Connected", imageSrc: "http://img.b2bpic.net/free-photo/positive-woman-recording-video-home_23-2148586299.jpg", imageAlt: "Community Leader Badge"
- },
- {
- id: "a6",brand: "Mastery", name: "Skill Tree Master", price: "Unlocked", rating: 5,
- reviewCount: "Expert", imageSrc: "http://img.b2bpic.net/free-photo/top-view-beautiful-rpg-still-life-items_23-2149282445.jpg?_wi=2", imageAlt: "Skill Tree Master Achievement"
- }
-];
-
-const achievementDetailsFeatures = [
- {
- id: "ach_f1", title: "Consistency Badges", tags: [
- "Streaks", "Habits"
- ],
- imageSrc: "http://img.b2bpic.net/free-photo/pause-icon-multimedia-entertainment-perforated-paper_53876-16455.jpg", imageAlt: "Consistency Badge"
- },
- {
- id: "ach_f2", title: "Impact Awards", tags: [
- "Reach", "Engagement"
- ],
- imageSrc: "http://img.b2bpic.net/free-vector/influencer-marketing-concept-with-symbols-laptop_23-2147685875.jpg", imageAlt: "Impact Award"
- },
- {
- id: "ach_f3", title: "Skill Mastery Trophies", tags: [
- "Expertise", "Growth"
- ],
- imageSrc: "http://img.b2bpic.net/free-vector/abstract-banner-data-visualization-big-data-processing-cloud-storage-server-hosting_39422-978.jpg", imageAlt: "Skill Mastery Trophy"
- }
-];
+import { Sparkles, Crown, ScrollText, Award, Star } from "lucide-react";
export default function AchievementsPage() {
+ 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 = [
+ {
+ 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" },
+ ],
+ },
+ ];
+
return (
({ name: item.label, id: item.href }))}
+ navItems={navItems}
button={{
- text: "Sign Up", href: "/register"
- }}
+ text: "Sign Up", href: "/register"}}
/>
@@ -136,39 +131,9 @@ export default function AchievementsPage() {
logoSrc="http://img.b2bpic.net/free-vector/gradient-metaverse-concept-labels_23-2149516151.jpg"
logoAlt="Creator Quest RPG Logo"
logoText="Creator Quest RPG"
- columns={[
- {
- 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" }
- ]
- }
- ]}
- useInvertedBackground={true}
+ columns={footerColumns}
/>
);
-}
\ No newline at end of file
+}
diff --git a/src/app/community/page.tsx b/src/app/community/page.tsx
index 3f202cc..1124c9b 100644
--- a/src/app/community/page.tsx
+++ b/src/app/community/page.tsx
@@ -1,23 +1,53 @@
"use client";
-
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
-import BlogCardThree from '@/components/sections/blog/BlogCardThree';
-import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
-import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
-import { MessageSquare } from "lucide-react";
+import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
+import BlogCardThree from "@/components/sections/blog/BlogCardThree";
+import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
+import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
+import { Sparkles, Crown, ScrollText, Award, MessageSquare } from "lucide-react";
export default function CommunityPage() {
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 = [
- { "items": [] },
- { "items": [] },
- { "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" } ] }
+ {
+ 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" },
+ ],
+ },
];
return (
@@ -37,9 +67,10 @@ export default function CommunityPage() {
@@ -53,38 +84,11 @@ export default function CommunityPage() {
useInvertedBackground={false}
blogs={[
{
- id: "blog1",
- category: "Community",
- title: "Celebrating Your First Upload!",
- excerpt: "A huge congratulations to all new creators completing their first mission! Share your experience and tips.",
- imageSrc: "http://img.b2bpic.net/free-photo/trends-fashion-moderm-latest-design-style_53876-21301.jpg",
- imageAlt: "First Upload celebration",
- authorName: "QuestMaster",
- authorAvatar: "http://img.b2bpic.net/free-photo/open-pages-book-e-book-online-learning-graphic-concept_53876-124380.jpg",
- date: "2 days ago",
- },
+ id: "blog1", category: "Community", title: "Celebrating Your First Upload!", excerpt: "A huge congratulations to all new creators completing their first mission! Share your experience and tips.", imageSrc: "http://img.b2bpic.net/free-photo/trends-fashion-moderm-latest-design-style_53876-21301.jpg", imageAlt: "First Upload celebration", authorName: "QuestMaster", authorAvatar: "http://img.b2bpic.net/free-photo/open-pages-book-e-book-online-learning-graphic-concept_53876-124380.jpg", date: "2 days ago"},
{
- id: "blog2",
- category: "Tips",
- title: "Overcoming Creator's Block",
- excerpt: "Feeling stuck? Our community shares effective strategies to reignite your creativity and break through barriers.",
- imageSrc: "http://img.b2bpic.net/free-photo/content-creator-analyzing-newly-released-gaming-tablet-received-from-sponsor_482257-128495.jpg",
- imageAlt: "Creator's Block tips",
- authorName: "CommunityGuide",
- authorAvatar: "http://img.b2bpic.net/free-vector/laptop-with-document-bulb_1223-17.jpg",
- date: "1 week ago",
- },
+ id: "blog2", category: "Tips", title: "Overcoming Creator's Block", excerpt: "Feeling stuck? Our community shares effective strategies to reignite your creativity and break through barriers.", imageSrc: "http://img.b2bpic.net/free-photo/content-creator-analyzing-newly-released-gaming-tablet-received-from-sponsor_482257-128495.jpg", imageAlt: "Creator's Block tips", authorName: "CommunityGuide", authorAvatar: "http://img.b2bpic.net/free-vector/laptop-with-document-bulb_1223-17.jpg", date: "1 week ago"},
{
- id: "blog3",
- category: "Achievements",
- title: "How I Hit Level 50 in 3 Months",
- excerpt: "Learn from a seasoned Creator Quest player on how they optimized their missions and quests for rapid progression.",
- imageSrc: "http://img.b2bpic.net/free-photo/still-life-books-versus-technology_23-2150063076.jpg",
- imageAlt: "Level 50 achievement",
- authorName: "XP_Master",
- authorAvatar: "http://img.b2bpic.net/free-photo/young-man-learning-virtual-classroom_23-2149200170.jpg",
- date: "3 weeks ago",
- },
+ id: "blog3", category: "Achievements", title: "How I Hit Level 50 in 3 Months", excerpt: "Learn from a seasoned Creator Quest player on how they optimized their missions and quests for rapid progression.", imageSrc: "http://img.b2bpic.net/free-photo/still-life-books-versus-technology_23-2150063076.jpg", imageAlt: "Level 50 achievement", authorName: "XP_Master", authorAvatar: "http://img.b2bpic.net/free-photo/young-man-learning-virtual-classroom_23-2149200170.jpg", date: "3 weeks ago"},
]}
/>
@@ -93,22 +97,13 @@ export default function CommunityPage() {