- Create custom SVG logo with professional branding - Implement premium color scheme with blue and gold accents - Add custom CSS with professional styling for cards, tables, buttons - Update logo template to use new logo.svg file - Create custom favicon for complete branding - Redesign homepage with premium content sections - Update resources page with membership tiers and premium pricing - Enhance contact page with testimonials and detailed information - Target audience: high-paying clients ($100+/hour) - Professional yet approachable design language 💘 Generated with Crush Assisted-by: GLM-4.7 via Crush <crush@charm.land>
28 lines
482 B
Bash
Executable File
28 lines
482 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#
|
|
# Configuration
|
|
#
|
|
|
|
# sass source
|
|
|
|
SASS_SOURCE_PATH="scss"
|
|
|
|
# sass options
|
|
SASS_OPTIONS="--source-map=true --style=nested"
|
|
|
|
# css target
|
|
CSS_TARGET_PATH="css"
|
|
|
|
#
|
|
# Check prerequisites
|
|
#
|
|
wtfile=$(command -v wt) || { echo "install wellington with 'brew install wellington"; exit 1; }
|
|
|
|
#
|
|
# Watch folder for changes
|
|
#
|
|
cd -P `pwd`
|
|
$wtfile compile "$SASS_SOURCE_PATH" -b "$CSS_TARGET_PATH" $SASS_OPTIONS
|
|
$wtfile watch "$SASS_SOURCE_PATH" -b "$CSS_TARGET_PATH" $SASS_OPTIONS
|