diff --git a/packages/web/src/pages/points.astro b/packages/web/src/pages/points.astro index 858e189..77e652d 100644 --- a/packages/web/src/pages/points.astro +++ b/packages/web/src/pages/points.astro @@ -1,39 +1,37 @@ --- import { BotDatabase } from "abbott-database" +import HtmlLayout from "../layouts/main.astro" + const botDatabase = new BotDatabase() const topPoints = await botDatabase.getTopPointsWithTwitchNames() --- - - - - - -

- Point totals in Adam's Twitch channel -

-
- (note that points are only ever given by Adam or moderators and don't - really mean anything 🤫) -
-
    - { - topPoints.map(({ name, numPoints }) => ( -
  1. - {name}: {numPoints} -
  2. - )) - } -
- - + +

+ Point totals in Adam's Twitch channel +

+
+ (note that points are only ever given by Adam or moderators and don't really + mean anything 🤫) +
+
    + { + topPoints.map(({ name, numPoints }) => ( +
  1. + {name}: {numPoints} +
  2. + )) + } +
+