diff --git a/src/app/leaderboard/page.tsx b/src/app/leaderboard/page.tsx index 0e1e7ba..c53b5e2 100644 --- a/src/app/leaderboard/page.tsx +++ b/src/app/leaderboard/page.tsx @@ -45,10 +45,10 @@ export default function LeaderboardPage() { useInvertedBackground={false} animationType="slide-up" metrics={[ - { id: "1", icon: Medal, title: "Sarah Chen", value: "2,450 pts" }, - { id: "2", icon: Target, title: "Marcus Johnson", value: "2,180 pts" }, - { id: "3", icon: Zap, title: "Emily Rodriguez", value: "1,950 pts" }, - { id: "4", icon: Trophy, title: "David Kim", value: "1,820 pts" } + { id: "1", icon: Medal, title: "Sarah Chen", value: "2,450 pts", description: "First place" }, + { id: "2", icon: Target, title: "Marcus Johnson", value: "2,180 pts", description: "Second place" }, + { id: "3", icon: Zap, title: "Emily Rodriguez", value: "1,950 pts", description: "Third place" }, + { id: "4", icon: Trophy, title: "David Kim", value: "1,820 pts", description: "Fourth place" } ]} gridVariant="uniform-all-items-equal" /> diff --git a/src/app/rewards/page.tsx b/src/app/rewards/page.tsx index 3a05162..8690cc7 100644 --- a/src/app/rewards/page.tsx +++ b/src/app/rewards/page.tsx @@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import { Gift, Star, Award } from 'lucide-react'; +import { Gift, Star, Award, Trophy } from 'lucide-react'; export default function RewardsPage() { return (