- ⚡️ Next.js 13
- ⚛️ React 18
- ✨ Styled Components - CssInJs for component styling
- 📏 ESLint — To find and fix problems in your code
The best way to start with this template is using Create Next App.
# yarn
yarn create next-app -e https://github.com/yolandariveragarcia/awakeseller-frontend
# npm
npx create-next-app -e https://github.com/yolandariveragarcia/awakeseller-frontend
To start the project locally, run:
npm dev
our
yarn dev
Open http://localhost:3000
with your browser to see the result.
- Node.js >= 18.02.0
- npm our yarn
.husky
— Husky configuration and hooks.public
— Static assets such as robots.txt, images, and favicon.src
— Application source code, including pages, components, styles.
yarn/npm dev
— Starts the application in development mode athttp://localhost:3000
.yarn/npm build
— Creates an optimized production build of your application.yarn/npm start
— Starts the application in production mode.yarn/npm lint
— Runs ESLint for all files in thesrc
directory.
npx local-ssl-proxy --source 3001 --target 3000
- Iniciar proxy HTTP SSL para desarrollo en local
import { Button } from '~/presentation/components/Button';
// To import images or other files from the public folder
import avatar from '~/public/avatar.png';