This is a Company Profile Website built with a separated frontend-backend architecture using:
backend/β Laravel project (RESTful API)frontend/β React project (consuming the API)
- Interactive landing page
- About the company section
- Blogs section
- Services section
- Contact section
- Admin panel for content management
- API for Services (CRUD)
- API for Articles (CRUD)
- API for Projects (CRUD)
- API for Testimonials
git clone https://github.com/rizaljihadudin/sweethome-construction.git
cd sweethome-construction
#SETUP BACKEND
cd backend
# Install PHP dependencies
composer install
# Copy and configure .env
cp .env.example .env
# Generate app key
php artisan key:generate
# Setup your database and run migrations
php artisan migrate --seed
# Run Laravel development server
php artisan serve
#SETUP FRONTEND
cd ../frontend
# Install Node dependencies
npm install
# Start development server
npm run dev