A statically generated domain placeholder example using Next.js
Easily deploy your own version with Vercel. It will prompt you to set your enviroment variables which can also be found below.
Deploying with the vercel button is super easy. Alternatively you can clone this repo and manage it yourself.
# clone repo
git clone https://github.com/timothyac/dough-mein.git
# open directory
cd dough-mein
# Install deps
npm run install
# start local server
npm run dev
If you are cloning this, you will want to create an env.local
for development. This is where you can quickly change the site name and colors. In the repository, there is an example provided env.local.example
.
Your .env.local
file should look like this:
NEXT_PUBLIC_SITE_NAME=...
NEXT_PUBLIC_PRIMARY_COLOR=...
NEXT_PUBLIC_SECONDARY_COLOR=...
NEXT_PUBLIC_ACCENT_COLOR=...
NEXT_PUBLIC_SUBTEXT=...
- NEXT_PUBLIC_SITE_NAME: required Title of the site and main header.
- NEXT_PUBLIC_PRIMARY_COLOR: Font color of the site.
- NEXT_PUBLIC_SECONDARY_COLOR: Background color of the site.
- NEXT_PUBLIC_ACCENT_COLOR: Link color of the site.
- NEXT_PUBLIC_SUBTEXT: Text under heading.