Beverage Consumption Info!
diff --git a/src/app/(app)/pointsguide/page.tsx b/src/app/(app)/pointsguide/page.tsx
index 571b252..a05613f 100644
--- a/src/app/(app)/pointsguide/page.tsx
+++ b/src/app/(app)/pointsguide/page.tsx
@@ -45,43 +45,42 @@ const tableData = [
export default function PointsGuidePage() {
return (
-
-
+
+
Points Guide
-
+
Learn how many points you receive for each drink!
- Game Points System:
-
+ Game Points System:
+
- +150 points for drinking ≥100 oz of water
- +100 points for keeping caffeine < 200 mg
- +150 points for staying under the sugar cap all day
-
- {" "}
- Exceeding 400mg caffeine limit or 30.5g sugar limit = 0 pts logged
- for those drinks{" "}
+ Exceeding 400mg caffeine limit or 30.5g sugar limit = 0 pts logged for
+ those drinks
-
-
-
+
+
+
Beverage Scoring System
- | Drink |
- Volume (oz) |
- Caffeine (mg) |
- Sugar (g) |
- Points Earned |
- Bonus |
+ Drink |
+ Volume (oz) |
+ Caffeine (mg) |
+ Sugar (g) |
+ Points Earned |
+ Bonus |
@@ -90,21 +89,18 @@ export default function PointsGuidePage() {
key={i}
className="border-t border-[color:var(--color-surface-950)]"
>
- {row.drink} |
- {row.volume} |
- {row.caffeine} |
- {row.sugar} |
- {row.points} |
- {row.bonus} |
+ {row.drink} |
+ {row.volume} |
+ {row.caffeine} |
+ {row.sugar} |
+ {row.points} |
+ {row.bonus} |
))}
-
-
-
);
}