Creating a Project
Start with a template and customize it with AI. Every project is a full-stack Next.js application.
Creating from the Dashboard
- 1
Click the New Project button in the top navigation or dashboard.
- 2
Choose a starter template from the available options.
- 3
Your project is created instantly. You'll be taken to the editor where you can start building.
Available Templates
Default
FreeComplete starter with example components and layouts
Minimal
FreeBare-bones app to build from scratch
What's Included
Every AppsAI project comes with:
- •Next.js 14 with App Router and TypeScript
- •Tailwind CSS for styling
- •Parse Server backend with cloud functions
- •MongoDB Atlas database (optional)
- •AWS Integration for infrastructure (optional)
- •One-click deployment to production
Project Structure
your-project/ ├── app/ # Next.js App Router pages │ ├── layout.tsx # Root layout │ ├── page.tsx # Home page │ └── ... # Your pages ├── components/ # React components ├── lib/ # Utility functions ├── public/ # Static assets ├── styles/ # Global styles ├── cloud/ # Parse Server cloud functions │ └── main.js # Cloud code entry point └── package.json # Dependencies