#!/bin/bash
echo "=== HOMEPAGE ==="
curl -s http://localhost:3001/ | grep -oP '\d+[\.,]?\d*\s*(producten|sneakers|shops|merken)' | head -10
echo "=== SNEAKERS PAGE ==="
curl -s http://localhost:3001/sneakers | grep -c 'sneaker-card\|product-card\|ProductCard'
echo "product cards found"
echo "=== DB COUNT ==="
docker exec supabase-db psql -U postgres -d sneakerpicks -t -c 'SELECT count(*) FROM products'
echo "=== LIVE FIX STATUS ==="
ls -la /var/www/sneakerpicks/src/pages/*.astro
