An AI-powered portfolio builder app designed to help developers and creators showcase their work effortlessly. Our platform combines a modern frontend experience, a secure and scalable backend, and built-in integrations for authentication, payments, AI features, and multi-language support.
With this app, you can quickly generate, customize, and publish a professional portfolio powered by the latest full-stack technologies.
-
Authentication & Profiles
- Sign up/login with email/password or OAuth (Google, GitHub)
- Manage user profile: name, bio, photo, social links
- Secure authentication using JWT or Clerk
-
Portfolio Creation & Management
- Create multiple portfolios
- Add projects, work experiences, skills, and education
- Choose themes/templates
- Save as draft or publish
-
AI-Powered Content Generation
- Generate professional work experiences
- Generate projects with descriptions, technologies, and demo links
- Generate personal profile/bio
- Suggest skills and technologies
- Auto-generate unique portfolio slug/URL
-
Portfolio Customization
- Select multiple design templates
- Custom colors, fonts, and layouts
- Mark featured projects
-
Sharing & Export
- Publicly share portfolio via unique URL
- Export to PDF
- Social media sharing links
-
Portfolio Analytics
- Track views, clicks, and interactions
- Filter analytics by date, portfolio, or interval
- Dashboard with top-performing portfolios
-
Template Management
- CRUD operations for templates
- Filter by premium/free, tags, or categories
- Preview templates
-
User Management
- View all users and portfolios
- Role-based access control: Admin, User
-
Deep AI Integration
- Generate realistic portfolio content using AI
- Suggest skills, projects, and achievements
- AI-generated project thumbnails and demo URLs
- Editable AI-generated content
-
Personalization
- Tailored to userβs industry and role
- Include relevant technologies and achievements
- π¦ Monorepo structure for clean code organization
- Frontend β Next.js 15, React 19, Tailwind, shadcn/ui
- Backend β Next.js API Routes, MongoDB + Mongoose
- Auth & Security β Clerk
- Payments β Stripe and paypal
- AI Enhancements β DeepSeek AI
- Deployment β Netlify (edge functions & CDN)
project-root/
βββ front/ # Frontend Next.js Application
βββ api/ # Backend API Application
- Next.js 15 with App Router
- React 19
- Tailwind CSS
- TypeScript
- shadcn/ui
- Framer Motion
- Redux Toolkit
- React Intl
- React Hook Form
- Lucide Icons
- Clerk Auth
- Stripe Payments
front/
βββ actions/ # Server actions and form handlers
βββ app/ # Next.js App Router pages and layouts
βββ components/ # Reusable React components
β βββ ui/ # shadcn/ui components
β βββ modules/ # Feature-specific components
β βββ custom/ # Custom shared components
βββ hooks/ # Custom React hooks
βββ lib/ # Utility functions and configurations
βββ providers/ # Context providers (Auth, Theme, etc.)
βββ store/ # Redux store and slices
βββ stories/ # React components documents stories
βββ data/ # Mock data
βββ types/ # TypeScript type definitions
βββ public/ # Static assets
- Next.js API Routes
- MongoDB + Mongoose
- Zod Validation
- CSRF + CORS + Security Headers
- Stripe Webhooks
- Clerk Webhooks
- DeepSeek Integration
api/
βββ actions/ # Server-side business logic and operations
βββ app/ # Next.js App Router API routes
β βββ api/ # RESTful API endpoints
βββ components/ # React Server Components (UI and layout)
βββ hooks/ # React hooks (client & server)
βββ lib/ # Utility functions and configurations
βββ models/ # Mongoose database models
βββ repositories/ # Business logic related to models
βββ types/ # TypeScript type definitions
- Node.js 18.17+
- MongoDB instance
- Clerk account
- Stripe account (optional)
- ElevenLabs account (optional)
git clone https://github.com/sylvaincodes/10minportfolioclient.git
cd 10minportfolioclient
cd front && bun install
cd ../api && bun install
Frontend .env.local
#NEXTJS URL
NEXT_PUBLIC_SERVER_URL=http://localhost:3001
NEXT_PUBLIC_WEBSITE_URL=http://localhost:3000
#CLERK APIS
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
CLERK_SECRET_KEY=
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/
NEXT_PUBLIC_CLERK_SIGN_UP_URL=/
CLERK_WEBHOOK_SECRET=
# GOOGLE ACCOUNT SEND EMAIL
MAIL_USER=your_email@gmail.com
MAIL_PASSWORD=
MAIL_HOST=smtp.gmail.com
MAIL_PORT=465
MAIL_SECURE=true
#SENTRY ERROR DEBUGGING
NEXT_PUBLIC_SENTRY_DSN=
SENTRY_DSN=your_private_dsn_here
#DeepSeek
DEEPSEEK_API_KEY=
# Stripe
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=
STRIPE_SECRET_KEY=
STRIPE_WEBHOOK_SECRET=
# Paypal
PAYPAL_CLIENT_ID=
PAYPAL_SECRET=
Backend .env.local
#NEXTJS URL
NEXT_PUBLIC_SERVER_URL=http://localhost:3001
NEXT_PUBLIC_WEBSITE_URL=http://localhost:3000
#CLERK APIS
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
CLERK_SECRET_KEY=
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/
NEXT_PUBLIC_CLERK_SIGN_UP_URL=/
CLERK_WEBHOOK_SECRET=
# GOOGLE ACCOUNT SEND EMAIL
MAIL_USER=your_email@gmail.com
MAIL_PASSWORD=
MAIL_HOST=smtp.gmail.com
MAIL_PORT=465
MAIL_SECURE=true
#MONGO DB
MONGODB_URI=
#CORS
ALLOWED_ORIGINS=http://localhost:3000,http://localhost:3001
NODE_ENV=development
#SENTRY ERROR DEBUGGING
NEXT_PUBLIC_SENTRY_DSN=
SENTRY_DSN=
DEEPSEEK_API_KEY=
# Stripe integration
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=
STRIPE_SECRET_KEY=
STRIPE_WEBHOOK_SECRET=
# Paypal
PAYPAL_CLIENT_ID=
PAYPAL_SECRET=
Terminal 1: Backend
cd api && bun dev
cd front && bun dev
cd front && bun run build
cd api && bun run build
You can run the frontend and backend together using Docker Compose.
git clone https://github.com/sylvaincodes/10minportfolioclient.git
cd 10minportfolioclient
Ensure your .env files are correctly set
front/.env β Frontend environment variables
api/.env β Backend environment variables
Build and start the containers
docker-compose up --build
Access the app
Frontend: http://localhost:3000
Backend: http://localhost:3001
Stop the containers
docker-compose downFork the repo
Create a feature branch: git checkout -b feature/my-feature
Commit: git commit -m "feat: my feature"
Push: git push origin feature/my-feature
Open a Pull Request
π License License EULA - see the LICENSE file.
Author Sylvain Codes
Patreon https://www.patreon.com/c/sylvaincodes
Support Shop https://www.patreon.com/c/sylvaincodes/shop
Contact Me https://www.patreon.com/messages/8b25e025c56c4d47a903cd9b02049c63?mode=campaign&tab=chats
Built with β€οΈ using Next.js, React, and TypeScript