"use client"; const tableData = [ { drink: "Water", volume: "8", caffeine: "n/a", sugar: "n/a", points: "100", bonus: "+15 for >=64oz in day", }, { drink: "Coffee", volume: "8", caffeine: "95", sugar: "?", points: "50", bonus: "0 pts after 400mg caffeine", }, { drink: "Coca-Cola", volume: "8", caffeine: "34", sugar: "39", points: "0", bonus: "Exceeds sugar", }, { drink: "100% Fruit Juice", volume: "8", caffeine: "0", sugar: "22", points: "50", bonus: "0 pts after 30.5g sugar", }, { drink: "Dairy Milk (low-fat)", volume: "8", caffeine: "0", sugar: "12", points: "50", bonus: "+0.5 calcium bonus", }, ]; export default function PointsGuidePage() { return (
Learn how many points you receive for each drink!
| Drink | Volume (oz) | Caffeine (mg) | Sugar (g) | Points Earned | Bonus |
|---|---|---|---|---|---|
| {row.drink} | {row.volume} | {row.caffeine} | {row.sugar} | {row.points} | {row.bonus} |