A simple mock demo real-estate front-end landing page website.
This is a demo website created for presentation purposes only and does not represent a real business.
- Clone this repository
git clone https://github.com/khianvictorycalderon/Rolya.git
- Run
npm install
- Run
npm run dev
The following is a list of installed dependencies and configuration settings used in this project.
You don’t need to install anything manually, as all dependencies are already managed through package.json
.
This section is provided for reference only, to give you insight into how the project was set up.
npm install tailwindcss @tailwindcss/vite
npm install -D @types/node
npm install -D gh-pages
- Update
vite.config.ts
:import tailwindcss from '@tailwindcss/vite' plugins: [ tailwindcss() ]
- Update
package.json
:"scripts": { "deploy": "gh-pages -d dist" }