Skip to content

Commit

Permalink
Update page.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
avsomers25 committed Oct 26, 2024
1 parent 9342daf commit 10c1c40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/dashboard/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ export default function Dashboard() {
{pointsData && userData.registration_status == 'checked_in' && (
<Card className="w-full max-w-2xl">
<CardHeader>
<CardTitle>Points Information</CardTitle>
<CardTitle className = "text-green-500">Points Information</CardTitle>
<CardDescription>
Your current points balance and total earned points. At the
end of the hackathon, there will be a grand raffle for prizes
Expand All @@ -681,13 +681,13 @@ export default function Dashboard() {
<div className="space-y-2">
<p className="text-lg">
Current Balance:{' '}
<span className="font-bold">
<span className="text-green-500 font-bold">
{pointsData.balance} points
</span>
</p>
<p className="text-lg">
Total Points Earned:{' '}
<span className="font-bold">
<span className="text-green-500 font-bold">
{pointsData.total_points} points
</span>
</p>
Expand Down

0 comments on commit 10c1c40

Please sign in to comment.