#!/bin/bash cd "$(dirname "$0")" # Generate simple SVG thumbnails for each template for t in landing-saas portfolio-designer business-agency restaurant-cafe resume-cv app-showcase event-conference coming-soon; do case $t in landing-saas) colors='#6366f1 #1e1b4b #8b5cf6' label='SaaS Landing' ;; portfolio-designer) colors='#f97316 #1c1917 #fafaf9' label='Portfolio' ;; business-agency) colors='#0ea5e9 #0f172a #f8fafc' label='Agency' ;; restaurant-cafe) colors='#b45309 #1c1917 #fef3c7' label='Restaurant' ;; resume-cv) colors='#2563eb #1e293b #f1f5f9' label='Resume/CV' ;; app-showcase) colors='#06b6d4 #0f172a #7c3aed' label='App Landing' ;; event-conference) colors='#e11d48 #0f172a #fbbf24' label='Event' ;; coming-soon) colors='#8b5cf6 #1e1b4b #ec4899' label='Coming Soon' ;; esac c1=$(echo $colors | cut -d' ' -f1) c2=$(echo $colors | cut -d' ' -f2) c3=$(echo $colors | cut -d' ' -f3) cat > "${t}.svg" << EOF EOF done echo "Generated thumbnails"