From ca390db4e4dc2ab9493977f6e94e448c741a8717 Mon Sep 17 00:00:00 2001 From: GamerBoss101 Date: Sat, 12 Apr 2025 20:59:03 -0400 Subject: [PATCH] More Style Fixes --- src/app/(app)/info/page.tsx | 2 +- src/app/(app)/pointsguide/page.tsx | 48 ++++++++++++++---------------- 2 files changed, 23 insertions(+), 27 deletions(-) diff --git a/src/app/(app)/info/page.tsx b/src/app/(app)/info/page.tsx index 8852b71..d70bc2a 100644 --- a/src/app/(app)/info/page.tsx +++ b/src/app/(app)/info/page.tsx @@ -2,7 +2,7 @@ export default function InfoPage() { return ( -
+

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
    -
    - -
    +
    + + - - - - - - + + + + + + @@ -90,21 +89,18 @@ export default function PointsGuidePage() { key={i} className="border-t border-[color:var(--color-surface-950)]" > - - - - - - + + + + + + ))}
    Beverage Scoring System
    DrinkVolume (oz)Caffeine (mg)Sugar (g)Points EarnedBonusDrinkVolume (oz)Caffeine (mg)Sugar (g)Points EarnedBonus
    {row.drink}{row.volume}{row.caffeine}{row.sugar}{row.points}{row.bonus}{row.drink}{row.volume}{row.caffeine}{row.sugar}{row.points}{row.bonus}
    - -
    -
    ); }