An Instagram-alike project created with ReactJS, NextJS and Styled Components for the JAMStack Bootcamp from Alura.
This application is deployed in: https://instalura-base-lac.vercel.app/
Check this project's Figma Layout.
.
├── src
│ ├── components
│ │ ├── component.tsx
│ │ └── [...]
│ ├── pages
│ │ ├── _app.tsx
│ │ ├── _document.tsx
│ │ ├── index.tsx
│ │ ├── <Page name>.tsx
│ │ ├── [...]
│ ├── styles
│ │ ├── pages
│ │ │ ├── Home.tsx
│ │ ├── components
│ │ │ ├── component.tsx
│ │ └── [...]
│ └── [...]
├── public
│ ├── static
│ │ ├── css
│ │ │ └── [...]
│ │ ├── imgs
│ │ │ └── [...]
│ │ └── favicon.ico
│ └── [...]
└── [...]
Runs the application in development mode.
Build the application to be deployed in production.
Runs the application previously built with command "yarn build".
Before running or building the application (right after downloading this repository), run command "yarn" so that all dependencies are downloaded by the Yarn package manager.