A monorepo containing applications and packages for generating professional-looking SaaS-style webpages using AI. Built with Next.js, TypeScript, shadcn/ui components, and the Vercel AI SDK.
- Generate webpages from natural language descriptions
- Real-time preview of generated webpages
- View and edit source code
- Live chat interface with AI
- Modern UI with shadcn/ui components
- Persistent chat history with Zustand
pagen/
├── web/ # Main web application
│ ├── app/ # Next.js app directory
│ ├── components/ # React components
│ ├── lib/ # Utility functions
│ └── store/ # State management
│
└── renderer/ # Preview/renderer application
├── app/ # Next.js app directory
├── components/ # React components
└── lib/ # Utility functions
-
Set up the Webshot Service:
# Pull and run the container on port 8842 (or any available port) docker run -p 8842:3000 ghcr.io/browserless/chromium
Note: The default port is 3000, but we use 8842 to avoid conflicts with the renderer service. You can choose a different port if needed.
Note: The default image on docker hub for browserless/chrome is v1, we use the image from ghcr.io, which is v2. If you deployed different versions, you need to adjust the API call in the webshot service.
-
Set up environment variables:
# Set the webshot service URL (use the port you chose above) NEXT_PUBLIC_WEBSHOT_URL=http://localhost:3001
-
Clone the repository
-
Copy the example environment file:
cp .env.example .env
-
Update the
.env
file with your credentials:NEXT_PUBLIC_SUPABASE_URL
NEXT_PUBLIC_SUPABASE_ANON_KEY
NEXT_PUBLIC_WEBSHOT_URL
(set to http://localhost:3001 or your chosen port)
-
Build and start the services:
# First-time build and start docker compose up --build # Subsequent starts docker compose up -d # View logs docker compose logs -f
-
Access the applications:
- Web App: http://localhost:1578
- Renderer: http://localhost:3000
- Webshot Service: http://localhost:3001 (or your chosen port)
-
Install dependencies:
pnpm install
-
Copy the environment file:
cp web/.env.example web/.env.local
-
Start the development servers:
# Start all applications pnpm dev # Start specific application pnpm --filter @pagen/web dev pnpm --filter @pagen/renderer dev # Ensure webshot service is running docker ps | grep webshot # Check if running docker start webshot # Start if not running
-
Open:
- Web App: http://localhost:1578
- Renderer: http://localhost:3345
- Webshot Service: http://localhost:3001 (or your chosen port)
- Next.js 15 (App Router)
- TypeScript
- shadcn/ui components
- Tailwind CSS
- Zustand for state management
- Turborepo for monorepo management
- pnpm for package management
- Docker & Docker Compose for containerization
# View service status
docker compose ps
# Restart services
docker compose restart web
docker compose restart renderer
# View logs
docker compose logs -f web
docker compose logs -f renderer
# Stop services
docker compose down
# Rebuild services
docker compose build --no-cache
- Main application for webpage generation
- Chat interface
- Real-time preview of generated pages
- Code editing capabilities
- Preview service for generated components
- Dynamic component rendering
- Isolated environment for previews
- Screenshot service for generated pages, based on browserless/chromium
- Read docs https://pages-webshot.tisvc.com/docs
# Add to specific app/package
pnpm --filter @pagen/web add <package>
# Add to all apps/packages
pnpm add -w <package>
# Run in all packages
pnpm build
# Run in specific package
pnpm --filter @pagen/web build
Feel free to open issues and pull requests for any improvements you'd like to add.
MIT