@million23/next
v1.0.22
Published
Nextjs boilerplate with Tailwindcss, ShadcnUI, Framer Motion, Lucide, and Next Themes
Downloads
3
Maintainers
Readme
@million23/next NextJS 14 Boilerplate
This is a NextJS boilerplate with Framer Motion, Lucide for iconography, and next-themes for theme control. This NextJS project uses the /pages
routing system, and I recommend to migrate this to /app
directory (Refer to this link on how to migrate the project on /app
directory).
I made this template for education purposes and to share the knowledge of basics of NextJS and React.
Cloning the template
- Execute this command to clone the template
npx @million23/next project-name
- Go to your cloned project
cd project-name
- Install the dependencies in your preferred package manager (I recommend
pnpm
if you're on Windows orbun
if you're on Linux).
npm install # or
pnpm install # or
yarn install # or
bun install
- Open the dev server
npm run dev # or
pnpm dev # or
yarn dev # or
bun run dev
Open your browser and go to
http://localhost:4321
to run the templateHappy Hacking!