Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Next.js starter template with TailwindCSS, daisyUI, TypeScript, PWA, and SEO configurations, ready to deploy.
Nextarter Daisy is a Next.js starter template that bootstraps a TypeScript project with TailwindCSS and daisyUI preconfigured, plus a battery of development tools for linting, formatting, PWA, and SEO.
Nextarter Daisy is an open-source boilerplate created by sozonome on GitHub. It starts from a create-next-app base and layers on TailwindCSS with the daisyUI component library, TypeScript, and a set of quality-of-life configurations. You input a project name and get a complete Next.js application with pages, styling, and tooling ready to develop. It runs on any platform that supports Next.js, including Vercel and Netlify, both of which have one-click deploy buttons in the repository.
next-pwa is included but disabled by default; you enable it by editing next.config.js.next-seo and next-sitemap are installed, letting you add meta tags, Open Graph data, and generate sitemaps.npx degit sozonome/nextarter-daisy <APP_NAME> to create a new project without cloning the entire history.Nextarter Daisy suits developers who want to skip the repeated setup of a new Next.js project. Solo developers can have a running start for a personal site or MVP. Agencies can offer clients a consistent stack with predictable tooling. Open-source maintainers can use it as a base for publishing their own starters or example apps.
src/pages/index.tsx.next-sitemap to generate your sitemap for search engines.next-pwa switch in next.config.js to turn the site into a progressively enhanced installable app.You start by running npx degit sozonome/nextarter-daisy <APP_NAME> in your terminal. That clones only the template files, without Git history. Then npm install (or yarn) installs dependencies, and npm run dev starts the development server at http://localhost:3000. Editing src/pages/index.tsx reloads the page automatically.
Yes. It's an open-source template hosted on GitHub under the sozonome account, and you can use it for any project, including commercial ones, subject to the repository's license.
It's configured but disabled. The next-pwa package is installed and set up, but you must enable workbox options in next.config.js to activate service workers and offline support.
Yes. The repository includes deploy buttons that import the project directly into Vercel or Netlify. Since it's a standard Next.js app, both platforms support it without extra configuration.
It uses TailwindCSS as the underlying CSS framework with daisyUI on top, which provides accessible UI components like buttons, cards, and modals that work with Tailwind's utility classes.
The template is built on the current version of Next.js at the time of creation, bootstrapped with create-next-app. It uses the pages router (see src/pages/index.tsx) rather than the app directory.
