https://github.com/liveduo/destack-starter-beta
Starter template for Destack beta - the visual page builder for Next.js & React.
https://github.com/liveduo/destack-starter-beta
landing-page nextjs nextjs-template reactjs template
Last synced: over 1 year ago
JSON representation
Starter template for Destack beta - the visual page builder for Next.js & React.
- Host: GitHub
- URL: https://github.com/liveduo/destack-starter-beta
- Owner: LiveDuo
- Created: 2022-12-15T10:19:53.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-16T21:33:31.000Z (over 2 years ago)
- Last Synced: 2025-03-27T22:12:39.840Z (over 1 year ago)
- Topics: landing-page, nextjs, nextjs-template, reactjs, template
- Language: HTML
- Homepage:
- Size: 525 KB
- Stars: 24
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Destack Starter Beta
This example shows a very basic version of the a *Destack* (beta) with Next.js.
- There's one page, `pages/index.js`, that shows the visual editor (in development) and the compiled version (in production).
- All the magic is done in, `pages/api/builder/handle.js`, that has to be setup once and handles templates saving and loading.
## Deploy your own
Deploy the example using [Vercel](https://vercel.com) or preview in Gitpod:
[
](https://vercel.com/new/git/external?repository-url=https://github.com/LiveDuo/destack-starter-beta&project-name=destack-starter-beta&repository-name=destack-starter-beta)
[
](https://gitpod.io/#https://github.com/LiveDuo/destack-starter-beta)
## How to
#### Development
Clone this repository:
```sh
git clone https://github.com/liveduo/destack-starter-beta
```
Install dependencies:
```sh
npm i
```
Run in development:
```sh
npm run dev
```
#### Production
Build for production:
```sh
npm run build
```
Run in production:
```sh
npm start
```
Deploy it to the cloud with [Vercel](https://vercel.com/new) ([Documentation](https://nextjs.org/docs/deployment)).