Skip to content
/ pagen Public

Mimic of v0.dev: Generate webpage and take screenshots.

License

Notifications You must be signed in to change notification settings

tiwater/pagen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pages - Generate professional-looking SaaS-style webpages using AI

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.

Features

  • 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

Project Structure

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

Getting Started

Prerequisites

  1. 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.

  2. Set up environment variables:

    # Set the webshot service URL (use the port you chose above)
    NEXT_PUBLIC_WEBSHOT_URL=http://localhost:3001

Using Docker Compose (Recommended)

  1. Clone the repository

  2. Copy the example environment file:

    cp .env.example .env
  3. 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)
  4. 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
  5. Access the applications:

Local Development

  1. Install dependencies:

    pnpm install
  2. Copy the environment file:

    cp web/.env.example web/.env.local
  3. 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
  4. Open:

Technologies Used

  • 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

Docker Commands

# 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

Applications

Web App (@pagen/web)

  • Main application for webpage generation
  • Chat interface
  • Real-time preview of generated pages
  • Code editing capabilities

Renderer (@pagen/renderer)

  • Preview service for generated components
  • Dynamic component rendering
  • Isolated environment for previews

Webshot

Development

Adding Dependencies

# Add to specific app/package
pnpm --filter @pagen/web add <package>

# Add to all apps/packages
pnpm add -w <package>

Running Commands

# Run in all packages
pnpm build

# Run in specific package
pnpm --filter @pagen/web build

Contributing

Feel free to open issues and pull requests for any improvements you'd like to add.

License

MIT

About

Mimic of v0.dev: Generate webpage and take screenshots.

Topics

Resources

License

Stars

Watchers

Forks

Languages