Full Next.js storefront with Square catalog integration, balloon color picker, delivery/pickup slot booking, CalDAV calendar sync, and admin panel. Admin features: item overrides, category display order/visibility, hours editor, holiday/occasion windows, quantity units, and modifier deselect. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
11 lines
146 B
Bash
11 lines
146 B
Bash
#!/bin/bash
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "Usage: $0 <image_file>"
|
|
exit 1
|
|
fi
|
|
|
|
IMAGE_FILE=$1
|
|
|
|
convert "$IMAGE_FILE" -rotate 90 "$IMAGE_FILE"
|