FI
fidacura/next-seed
Next.js + TypeScript + SCSS bootstrap for web projects
next-seed
A minimalist Next.js starter for Next webdev projects.
Features
- ๐ Next.js with TypeScript
- ๐จ SCSS modules for component-scoped styling
- ๐งฐ Global SCSS utilities with basic design foundations
- ๐ ESLint & Prettier preconfigured
- ๐ณ Docker-ready for easy server-deployment
- ๐ฑ Mobile-first responsive design
Setup
Install
# clone and install dependencies
git clone https://github.com/fidacura/next-seed.git my-project
cd my-project
npm installDevelopment
# start dev server on port 10100
npm run dev
# format code
npm run format
# check formatting
npm run format:checkProduction
# create optimized production-build
npm run build
# start production-server
npm run startDocker
# build Docker image
docker build -t next-seed .
# run container
docker run -p 10000:10000 next-seedStructure
next-seed/
โโโ src/ # Application source
โ โโโ components/ # Reusable UI components
โ โโโ context/ # React context providers
โ โโโ data/ # Static data & data utilities
โ โโโ hooks/ # Custom React hooks
โ โโโ pages/ # Next.js pages & routing
โ โโโ styles/ # Global styles & variables
โ โโโ types/ # TypeScript definitions
โ โโโ utils/ # Helper functions
โโโ public/ # Static assets
โโโ fonts/ # Custom web fonts
made with โค๏ธ by fidacura
On this page
Languages
SCSS59.7%TypeScript38.5%JavaScript1.8%
Contributors
Created June 12, 2023
Updated March 22, 2025