Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Starter template for Destack - the visual page builder for Next.js.

A full-stack Next.js TypeScript template focused on functionality over UI, featuring Zustand, TanStack Query, and ESLint 9 support.
Destack Starter is a minimal Next.js boilerplate for the Destack visual page builder, demonstrating how to serve the visual editor during development and the compiled page in production. It is published on GitHub under the LiveDuo organization and is intended as the starting point for anyone building a Destack-based site.
Destack Starter is a minimal boilerplate template that connects the Destack visual page builder to a Next.js project. It contains one page, pages/index.js, which shows the visual editor when running in development and the compiled version when running in production. The project also includes a required API route, pages/api/builder/handle.js, that must be set up once to handle template saving and loading. The template is maintained by LiveDuo on GitHub and carries the topics landing-page, nextjs, reactjs, and template.
The workflow is documented in the README: clone the repository, install dependencies with npm i, and run npm run dev to start development. For production, run npm run build followed by npm start; the API route at pages/api/builder/handle.js persists the templates you create in the editor.
Clone the repository, run npm i to install dependencies, then run npm run dev. This starts the project in development mode, where pages/index.js shows the visual editor.
The file pages/api/builder/handle.js is the backend endpoint that handles template saving and loading. The README says this file has to be set up once, and it allows the visual editor to persist templates.
The README does not mention any styling system such as Tailwind CSS or styled-components. It is a minimal starter focused on the Destack integration, so you would add your own styling or use Destack's built-in design tools.
Yes. The README includes a Vercel deployment link that creates a new project with the repository URL and pre-fills the project and repository names. There is also a Gitpod button for a cloud workspace.
