NEW LANDING PAGE: - Full-screen responsive design for phone and desktop - Three main sections: About, Accommodation, Community - About section explains site purpose and customer connection - Accommodation section promotes Pensiunea Buongusto Sibiu - Community section showcases Stories & Tracks features COMMUNITY SYSTEM: - Complete login/register system with email, password, nickname - Password recovery functionality via email - Post creation template with all required features: * Title and subtitle fields * Rich text content area * Photo upload with descriptions * GPX file upload capability * 1-5 difficulty rating system * Preview mode before publishing - GPX map preview component (placeholder for Leaflet integration) ADMIN PANEL: - Comprehensive admin dashboard - User management (view, activate/deactivate users) - Post management (approve, edit, delete posts) - Frontend management (edit homepage, site settings) - Backend management (database, security, logs) - Statistics and analytics overview TECHNICAL INFRASTRUCTURE: - Prisma database schema with complete data models - Environment configuration template - Additional dependencies for email and authentication - Proper component structure and organization - Mobile-responsive design throughout FEATURES IMPLEMENTED: ✅ Full-screen landing page with 3 sections ✅ Pensiunea Buongusto promotion section ✅ Community Stories & Tracks area ✅ Email/password/nickname authentication ✅ Password recovery system ✅ Complete post creation template ✅ Photo upload with descriptions ✅ GPX file upload ✅ Difficulty rating (1-5 stars) ✅ Admin panel for frontend/backend management ✅ Database schema and models ✅ Mobile and desktop responsive design Ready for database setup and authentication implementation.
30 lines
721 B
Plaintext
30 lines
721 B
Plaintext
# Database
|
|
DATABASE_URL="postgresql://username:password@localhost:5432/moto_adventure"
|
|
|
|
# NextAuth
|
|
NEXTAUTH_URL="http://localhost:3000"
|
|
NEXTAUTH_SECRET="your-secret-key-here"
|
|
|
|
# Email Service (for password recovery)
|
|
EMAIL_HOST="smtp.gmail.com"
|
|
EMAIL_PORT="587"
|
|
EMAIL_USER="your-email@gmail.com"
|
|
EMAIL_PASS="your-app-password"
|
|
EMAIL_FROM="noreply@moto-adv.com"
|
|
|
|
# File Upload
|
|
UPLOAD_DIR="./public/uploads"
|
|
MAX_FILE_SIZE="10485760" # 10MB
|
|
|
|
# Site Configuration
|
|
SITE_URL="http://localhost:3000"
|
|
SITE_NAME="Moto Adventure Community"
|
|
|
|
# Admin
|
|
ADMIN_EMAIL="admin@moto-adv.com"
|
|
|
|
# Pensiunea Buongusto
|
|
PENSIUNEA_PHONE="+40-xxx-xxx-xxx"
|
|
PENSIUNEA_EMAIL="info@pensiunebuongusto.ro"
|
|
PENSIUNEA_WEBSITE="https://pensiunebuongusto.ro"
|