Table of Contents
Create a travel landing page using Next.js with TailwindCSS
The current verison of DashGo using the technologies bellow:
This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.
For run the DashGo on your machine you need to have installed Node.js. With Node.js you have the NPM (Node Package Manager), but (again, personal choice) I prefer use Yarn as my package manager (most becuase performance).
To see if you have NPM installed you can use the command:
npm --version
If your choise is Yarn, you can check if it's working using the command:
yarn --version
On this topic you can found the steps about how to prepare to run this project.
-
Clone the repo;
-
Install packages:
- With NPM: npm install
```shell 2. **With Yarn:** ```bash yarn
-
Duplicate
.env.example
and rename it for.env
;
Now is the time to run the project, for that you can use NPM or Yarn.
yarn dev
npm run dev
- Change the folder structure;
- Use Next.js instead React;
- Add zoom effect on places list;
- Use all assets on
public/
folder.
Daniel Sousa