Free and open-source SaaS template for building AI-powered image and video generation platforms using Flaq.ai API. Start your AIGC business instantly.
δΈζηζ¬θ―·ει οΌδΈζθ―΄ζ
- π¨ Text-to-Image β Generate stunning images from text prompts using state-of-the-art AI models
- πΌοΈ Image-to-Image β Transform existing images into creative variations with consistent style
- π¬ Text-to-Video β Create high-quality videos from simple text descriptions
- πΉ Image-to-Video β Animate static images into dynamic video content
- π Virtual Try-On β AI-powered virtual clothing try-on experience
- π Internationalization β Built-in support for English and Simplified Chinese (δΈζ)
- π Secure API Key Management β Encrypted client-side storage for your Flaq.ai credentials
- βοΈ Cloudflare R2 Storage β Built-in image hosting with Cloudflare's global CDN
- π± Responsive Design β Fully responsive UI built with Tailwind CSS and Radix UI
- π Dark Mode β Beautiful dark-themed UI out of the box
- β‘ Fast Performance β Powered by Next.js 16 with Turbopack support
- π SEO Optimized β Dynamic metadata, Open Graph, sitemap, and structured data
| Category | Technology |
|---|---|
| Framework | Next.js 16 (App Router) |
| Language | TypeScript |
| UI Library | React 19 |
| Styling | Tailwind CSS v4 |
| Component Library | Radix UI |
| Animations | Framer Motion |
| Forms | React Hook Form + Zod |
| State Management | Zustand |
| Data Fetching | SWR |
| i18n | next-intl |
| Icons | Lucide React |
| Charts | Recharts |
| Package Manager | pnpm |
| Linting | ESLint + Prettier |
- Node.js >= 18.x (check
.nvmrcfor the recommended version) - pnpm >= 10.x (the project uses
packageManagerfield inpackage.json) - A Flaq.ai account with an active API key
- A Cloudflare account (for R2 image storage)
# 1. Clone the repository
git clone https://github.com/your-username/flaq-saas-template.git
cd flaq-saas-template
# 2. Install pnpm if you haven't already
npm install -g pnpm
# 3. Install dependencies
pnpm install
# 4. Copy the environment template
cp .env.example .env.localEdit .env.local and configure the following variables:
# Your site URL (used for metadata, sitemap, and Open Graph)
NEXT_PUBLIC_SITE_URL="http://localhost:3000"
# Contact email displayed in the footer
NEXT_PUBLIC_CONTACT_US_EMAIL="contact@flaq.ai"
# Cloudflare R2 Storage Configuration (server-side only)
# Get these from Cloudflare Dashboard > R2 > Manage R2 API Tokens
R2_ACCOUNT_ID=your_cloudflare_account_id
R2_ACCESS_KEY_ID=your_r2_access_key_id
R2_SECRET_ACCESS_KEY=your_r2_secret_access_key
R2_BUCKET_NAME=your_r2_bucket_name
β οΈ Important: Never exposeR2_SECRET_ACCESS_KEYto the client. The R2 credentials are server-side only.
This template uses Cloudflare R2 for storing user-uploaded images and generated assets. Follow these steps:
- Log in to your Cloudflare Dashboard
- Navigate to R2 in the sidebar
- Create a bucket (e.g.,
flaq-ai-saas) - Generate API Tokens:
- Go to Manage R2 API Tokens
- Create a new API token with Object Read & Write permissions
- Save the Access Key ID and Secret Access Key securely
- Configure Public Access:
- In your R2 bucket settings, enable Public Access via a custom domain or
r2.devsubdomain - Note down the Public Domain URL (e.g.,
https://your-bucket.your-account.r2.cloudflarestorage.com)
- In your R2 bucket settings, enable Public Access via a custom domain or
- Set environment variables in
.env.local(see above) - Configure the public domain in the app's Open API Settings dialog (gear icon in the header)
After setup, use the Test R2 Connection button in the settings dialog to verify your configuration.
- Register/Sign in at flaq.ai
- Navigate to your account dashboard
- Generate a Client Key from the API Keys section
- Copy your Client Key
- Open the app and click the gear icon (βοΈ) in the header to open the Open API Settings dialog
- Paste your Client Key and click Test Connection to verify
- Save the settings
π‘ Tip: Enable "Remember Me" to securely persist your API key across sessions. The key is stored using encrypted local storage. For shared or public devices, leave this option unchecked for maximum security.
π API Credits: You need sufficient API credits to generate images and videos. Top up your balance at flaq.ai if needed.
# Start the development server (with Turbopack for faster HMR)
pnpm dev:turbo
# Or start without Turbopack
pnpm devOpen http://localhost:3000 in your browser.
# Production build
pnpm build
# Build with bundle analysis
pnpm build:analyze
# Start production server
pnpm start# Run ESLint
pnpm lint
# Auto-fix lint issues
pnpm lint:fix
# Format code with Prettier
pnpm prettier
# TypeScript type checking
pnpm ts-checkThis template comes with five fully functional AI generation tools, all powered by Flaq.ai API:
| Capability | Description | Supported Models |
|---|---|---|
| Text-to-Image | Generate images from natural language prompts | Nano Banana Pro, Seedream 5.0, GPT Image 2, Qwen Image 2.0, Grok Imagine |
| Image-to-Image | Transform or enhance existing images with AI, maintaining style and composition | Nano Banana Pro Edit, Seedream 5.0 Edit, GPT Image 2 Edit, Grok Imagine Edit |
| Text-to-Video | Create videos from text descriptions with advanced motion synthesis | Veo 3.1, Wan 2.7, Kling 3.0, Seedance 2.0, Vidu Q3 |
| Image-to-Video | Animate static images into dynamic videos | Veo 3.1, Wan 2.7, Kling 3.0, Seedance 2.0, Vidu Q3 |
| Virtual Try-On | AI-powered virtual clothing try-on β upload a garment and a model photo to see the result | GPT Image 2 Edit, Nano Banana Pro Edit |
Each tool includes:
- Pre-configured form with model selection and parameter controls
- Real-time generation status polling
- Result gallery with download and share options
- History of previously generated assets
This template supports English (default) and Simplified Chinese (δΈζ) out of the box.
- Translation files are located in the
messages/directory (en.json,zh.json) - Locale is auto-detected from the browser's
Accept-Languageheader - Users can manually switch languages via the footer or the language dialog
- URL structure:
/for English,/zh/for Chinese
To add more languages:
- Add the locale to
i18n/languages.ts - Create a new translation file in
messages/ - Add any new language-specific metadata in the layout files
.
βββ app/ # Next.js App Router pages
β βββ [locale]/ # Internationalized routes (en, zh)
β β βββ (with-footer)/ # Pages with footer layout
β β β βββ (home)/ # Landing page
β β β βββ (ai-features)/ # AIGC feature pages
β β βββ (without-footer)/ # Full-screen pages (e.g., +page)
β βββ api/ # API routes (proxy-image, upload)
β βββ robots.ts # Robots.txt generation
β βββ sitemap.ts # Dynamic sitemap generation
βββ components/ # Reusable React components
β βββ ui/ # shadcn/ui-style components (Radix-based)
β βββ dialog/ # Dialog components (API settings, etc.)
β βββ layout/ # Layout components (header, footer, sidebar)
β βββ ... # Feature-specific components
βββ hooks/ # Custom React hooks
βββ i18n/ # Internationalization configuration
β βββ languages.ts # Supported locales definition
β βββ request.ts # next-intl request configuration
β βββ routing.ts # Locale routing configuration
βββ lib/ # Utility libraries
β βββ constants/ # App constants, model configs, navigation
β βββ utils/ # Utility functions
β βββ env.ts # Environment variable helpers
βββ messages/ # Translation files (en.json, zh.json)
βββ network/ # API client and network utilities
β βββ clientFetch.ts # Flaq.ai API client with auth
β βββ image/ # Image generation API calls
β βββ video/ # Video generation API calls
β βββ upload/ # R2 upload client
βββ public/ # Static assets (images, icons, fonts)
βββ store/ # Zustand state stores
βββ next.config.mjs # Next.js configuration
βββ proxy.ts # Middleware proxy (i18n + IP forwarding)
βββ tailwind.config.ts # Tailwind CSS configuration
βββ tsconfig.json # TypeScript configuration
The easiest way to deploy this template is via Vercel:
- Push the repository to GitHub
- Import the project in Vercel
- Add all environment variables (
R2_*,NEXT_PUBLIC_*) in Vercel's project settings - Deploy!
The template also works on any platform that supports Next.js (Netlify, Cloudflare Pages, Docker, etc.).
This project is open-source under the MIT License.