diff --git a/app/page.tsx b/app/page.tsx
index 9c548f8..1a37d70 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -55,7 +55,8 @@ function SkeletonSections() {
className='space-y-3'
>
-
+
+
{[1, 2, 3, 4].map((j) => (
))}
+
))}
>
@@ -121,7 +123,8 @@ function GameSection({
-
+
+
{games.map((game, idx) => (
))}
+
)
}
@@ -228,7 +232,8 @@ function SaleSection({
-
+
+
{games.map((game, idx) => {
const discountPct = game.price_initial && game.price_current
? Math.round((1 - game.price_current / game.price_initial) * 100)
@@ -324,6 +329,7 @@ function SaleSection({
)
})}
+
{/* Disclaimer */}