A modern, responsive, and feature-rich Next.js marketing website template for AI-powered SaaS applications. This template includes a beautiful landing page, documentation, and AI assistant integration, all with dark/light theme support.
- 🚀 Next.js 16 with App Router
- 📚 Nextra v4 for beautiful documentation
- 🤖 AI Assistant powered by Torqbit
- 🌓 Dark/Light theme support
- 📱 Fully responsive design
- ⚡ Optimized for performance
- 🎨 Customizable components
- 🔍 SEO optimized
- Framework: Next.js 16
- Documentation: Nextra v4
- Styling: Tailwind CSS
- UI Components: Shadcn/ui
- Icons: Hero Icons
- Theming: next-themes
- Type Safety: TypeScript
- AI Integration: Torqbit
- Clone the repository
git clone [https://github.com/yourusername/ai-saas-template.git](https://github.com/yourusername/ai-saas-template.git) cd ai-saas-template - Install dependencies
npm install
- Run the development server
npm run dev
- Open http://localhost:3000 with your browser to see the result.
Update the brand information in src/lib/props.ts:
export const brand = {
logo: "/logo.png", // Replace with your logo
name: "Your Brand",
tagline: "Your tagline here",
};Customize the theme colors in tailwind.config.js:
theme: {
extend: {
colors: {
brand: {
DEFAULT: '#000000', // Your brand color
},
},
},
}Update the pricing plans in src/lib/props.ts:
export const PricingProps = {
annualDiscount: 20,
plans: [
{
name: "Starter",
monthlyPrice: 25,
description: "Perfect for small businesses",
features: ["1 AI assistant", "1,000 messages", "Basic features"],
buttonLabel: "Get Started",
buttonVariant: "outline",
isPopular: false,
},
// Add more plans as needed
],
};The documentation is built using Nextra v4, a modern static site generator for Next.js. You can find the documentation in the docs directory.
To add new pages to the documentation,
- Create a new .mdx or .md file in the docs directory
- Update the navigation in theme.config.tsx
The AI assistant is integrated using Torqbit. To set it up:
- Sign up for a Torqbit API key
- Add the API key to your environment variables:
NEXT_PUBLIC_TORQBIT_API_KEY=your_api_key_here
MIT
Contributions are welcome! Please open an issue or submit a pull request.
Would you like me to make any adjustments to this README? I can:
1. Add more specific setup instructions
2. Include additional customization options
3. Add more details about specific features
4. Include a contributors section
5. Add a FAQ section
Let me know what you'd like to modify or add!


