- 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
24 lines
644 B
Bash
24 lines
644 B
Bash
#!/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
|