#!/bin/bash # Generate simple SVG-based placeholder icons for the PWA # These should be replaced with proper icons later for size in 192 512; do cat > "public/icons/icon-${size}.svg" << EOF T EOF done