Welcome to Rectify App, a modern web application built with Next.js and React! 🚀
- 🌐 Live Website
- ✨ Features
- 🚀 Getting Started
- 🏗️ Project Structure
- 🧪 Testing
- 🚢 Deployment
- 🤝 Contributing
Visit our live website at https://kreactify.vercel.app/
- 📱 Responsive design using Tailwind CSS
- 🌍 Interactive reviews component for different countries
- 🔍 How It Works section with image and content display
- 🔄 Continuous Integration and Deployment with GitHub Actions
- 📅 Booking system for design consultations
To get started with the Rectify App, follow these steps:
-
Clone the repository:
git clone https://github.com/KiranGadhavi/rectify-app.git
-
Install dependencies:
cd rectify-app npm install
-
Run the development server:
npm run dev
-
Open http://localhost:3000 in your browser to see the app. 🎉
The project structure is organized as follows:
rectify-app/
├── src/
│ ├── app/
│ │ ├── page.jsx
│ │ └── layout.jsx
│ ├── components/
│ │ ├── Header/
│ │ │ └── HeaderComponent.jsx
│ │ ├── Footer/
│ │ │ └── FooterComponent.jsx
│ │ ├── Main/
│ │ │ ├── HowItWorks/
│ │ │ │ └── HowItWorksComponent.jsx
│ │ │ └── Reviews/
│ │ │ └── ReviewsComponent.jsx
│ │ ├── Founder/
│ │ │ ├── FounderComponent.jsx
│ │ │ └── FounderFlash/
│ │ │ └── FounderFlashComponent.jsx
│ │ └── Booking/
│ │ └── BookingComponent.jsx
│ └── ...
├── public/
│ ├── assets/
│ │ ├── logo.png
│ │ └── ...
│ └── ...
├── .github/
│ └── workflows/
│ ├── ci.yml
│ └── ...
├── .next/
│ ├── cache/ # Next.js cache
│ └── ...
├── node_modules/ # Dependencies
├── package.json # Project configuration
├── README.md # This file
└── ...