feat: Enhanced CSS animations, improved UI components, and project reorganization
- Enhanced globals.css with comprehensive animation system - Added advanced map marker animations (GPS, parking) - Improved button and filter animations with hover effects - Added new UI components: BookingModal, ParkingDetails, WheelPicker - Reorganized project structure with better documentation - Added optimization scripts and improved development workflow - Updated deployment guides and technical documentation - Enhanced mobile responsiveness and accessibility support
This commit is contained in:
23
scripts/frontend-only.sh
Normal file
23
scripts/frontend-only.sh
Normal file
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
|
||||
# 🎨 Frontend Only Start Script
|
||||
echo "🎨 Starting Smart Parking Finder Frontend..."
|
||||
|
||||
# Navigate to frontend directory (go back one level since we're in scripts folder)
|
||||
cd "$(dirname "$0")/../frontend"
|
||||
|
||||
# Check dependencies
|
||||
if [ ! -d "node_modules" ]; then
|
||||
echo "📦 Installing dependencies..."
|
||||
npm install
|
||||
fi
|
||||
|
||||
echo "🚀 Starting Next.js development server..."
|
||||
echo "🌐 Frontend will run on: http://localhost:3000"
|
||||
echo ""
|
||||
echo "⚠️ Note: Backend is not started. Some features may not work."
|
||||
echo "💡 To start backend, open new terminal and run:"
|
||||
echo " cd backend && npm run start:dev"
|
||||
echo ""
|
||||
|
||||
npm run dev
|
||||
Reference in New Issue
Block a user