From 9b7e68487d93a12213b65404b69ba2171f9dd2d4 Mon Sep 17 00:00:00 2001 From: Gabe Farrell Date: Wed, 31 Dec 2025 17:53:00 -0500 Subject: [PATCH] add header, adjust ui --- client/app/components/rewind/Rewind.tsx | 2 +- client/app/components/rewind/RewindStatText.tsx | 2 +- client/app/components/rewind/RewindTopItem.tsx | 2 +- client/app/routes/RewindPage.tsx | 7 ++++++- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/client/app/components/rewind/Rewind.tsx b/client/app/components/rewind/Rewind.tsx index 45b32db..21878c5 100644 --- a/client/app/components/rewind/Rewind.tsx +++ b/client/app/components/rewind/Rewind.tsx @@ -38,7 +38,7 @@ export default function Rewind(props: Props) { includeTime={props.includeTime} /> -
+
-
+
- +
diff --git a/client/app/routes/RewindPage.tsx b/client/app/routes/RewindPage.tsx index b3ef0da..5b4e518 100644 --- a/client/app/routes/RewindPage.tsx +++ b/client/app/routes/RewindPage.tsx @@ -12,5 +12,10 @@ export default function RewindPage() { useEffect(() => { getRewindStats({ year: 2025 }).then((r) => setStats(r)); }, []); - return <>{stats !== undefined && }; + return ( +
+

Your 2025 Rewind

+ {stats !== undefined && } +
+ ); }