1.0.1 • Published 4 months ago

@million23/nextjs v1.0.1

Weekly downloads
-
License
-
Repository
-
Last release
4 months ago

@million23/nextjs 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

  1. Execute this command to clone the template
npx @millon23/nextjs project-name
  1. Go to your cloned project
cd project-name
  1. Install the dependencies in your preferred package manager (I recommend pnpm if you're on Windows or bun if you're on Linux).
npm install     # or
pnpm install    # or
yarn install    # or
bun install
  1. Open the dev server
npm run dev     # or
pnpm dev        # or
yarn dev        # or
bun run dev
  1. Open your browser and go to http://localhost:4321 to run the template

  2. Happy Hacking!