Skip to content

Releases: the-bipu/nextjs-starters

v1.0.0 – First stable release

26 Aug 05:40

Choose a tag to compare

Next.js Starter 🚀

Highlights

  • Initial stable starter for building Next.js apps (App Router)
  • Uses next/font with Geist for performant, automatic font loading
  • Structured folders for quick scaling: app/, components/, context/, lib/, pages/, public/

What's inside 📦

  • Framework: Next.js (create-next-app scaffold)
  • Entry: app/page.tsx with live reload in dev
  • Config: next.config.ts, tsconfig.json, postcss.config.mjs (update notes here if you add Tailwind)
  • Package scripts: see package.json (dev, build, start, etc.)
  • License: MIT

(Adjust this list to match your actual setup if you add/remove tools.)

Getting started ✅

# 1) Use this starter
npx create-next-app@latest my-app --example https://github.com/the-bipu/nextjs-starters

# 2) Or clone directly
git clone https://github.com/the-bipu/nextjs-starters.git
cd nextjs-starters

# 3) Install & run
npm install
npm run dev   # or yarn dev / pnpm dev / bun dev

Open http://localhost:3000/ to view the app. (The page auto-updates as you edit app/page.tsx.)

Changelog 🔄

  • Init: Next.js scaffold via create-next-app
  • Fonts: Integrated next/font with Geist
  • Project structure: added app/, components/, context/, lib/, pages/, public/
  • Config: added next.config.ts, TypeScript config, PostCSS config

Roadmap (post-v1) 🧭

  • Add opinionated UI kit (e.g., shadcn/ui) and Tailwind (if not already)
  • Set up CI (GitHub Actions) for lint/test/build
  • Example API routes + env management
  • Example pages: auth, dashboard, error states

Known issues 🐞

  • None tracked for v1.0.0. (If you know of any, list them here with quick workarounds.)

Acknowledgements 🙌

  • Next.js team and community
  • Geist font by Vercel