#!/bin/bash

webp_to_download=(
  js
  python
  bun
  react
  nextjs2-dark
  nextjs2-light
  tailwindcss
  shadcn-ui-dark
  shadcn-ui-light
  redux
  chatgpt-light
)

BASE_URL="https://assets.chanhdai.com/images/tech-stack-icons"

for i in "${webp_to_download[@]}"; do
  url="${BASE_URL}/${i}.svg"
  echo "Downloading $url"
  sudo wget "$url"
done

echo "done"

