Skip to content

Latest commit

 

History

History
67 lines (42 loc) · 2.14 KB

File metadata and controls

67 lines (42 loc) · 2.14 KB

Wasp Landing Page — Community Design Concept

This is not an official Wasp project. It is an unofficial community contribution exploring a redesigned landing page for Wasp. It is not affiliated with or endorsed by the Wasp team.

Live Demo

Screenshots

Hero section

Code comparison

Claude Code plugin

How it works

Community & FAQ

Blog & footer

About

A redesigned landing page concept for Wasp, the full-stack React & Node.js framework. Built with Wasp itself to showcase the developer experience.

Links

Tech Stack

Development

wasp start db    # start the database (required by Wasp even for this static page)
wasp start       # start the dev server

Build & Deploy

The dist/ folder contains the pre-built static site. To rebuild after making changes:

wasp build
cd .wasp/build/web-app && npm install && npx vite build
cp -r .wasp/build/web-app/build dist

To deploy with Docker (works with Coolify, Railway, Fly.io, etc.):

docker build -t wasp-landing .
docker run -p 3000:80 wasp-landing

The Dockerfile serves the dist/ folder with nginx. Point any Docker-based hosting platform (e.g. Coolify) at this repo and it will auto-detect the Dockerfile.

License

This is an open community contribution. Wasp itself is MIT licensed.