Slide-AI revolutionizes how you connect with your audience on Instagram. Automate responses and boost engagement effortlessly, turning interactions into valuable business opportunities.
- Instagram Automation: Automate replies to comments and direct messages on Instagram.
- AI-Powered Responses: Generate smart, context-aware replies using AI (premium plan).
- Analytics & Insights: Track engagement and automation performance.
- Integrations: Connect your Instagram account securely.
- Subscription Plans: Free and premium plans with Stripe-powered billing.
- User Dashboard: Manage automations, integrations, and account settings.
- Modern UI: Built with Next.js, Tailwind CSS, and Radix UI components.
- Boost engagement with target responses
- Automate comment replies to enhance audience interaction
- Turn followers into customers with targeted messaging
- All features from Free Plan
- AI-powered response generation
- Advanced analytics and insights
- Priority customer support
- Customer branding options
- Frontend: Next.js (App Router, React, TypeScript)
- Styling: Tailwind CSS, Radix UI
- State Management: Redux Toolkit, React Query
- Authentication: Clerk
- Database: PostgreSQL (via Prisma ORM)
- Payments: Stripe
- AI Integration: OpenAI API
- Other: Axios, Lucide React Icons
git clone <your-repo-url>
cd slide-ainpm install
# or
yarn install
# or
pnpm install
# or
bun installCreate a .env file in the root directory and add the following (replace with your actual keys):
DATABASE_URL=postgresql://<user>:<password>@<host>:<port>/<db>
STRIPE_SECRET_KEY=sk_test_...
CLERK_SECRET_KEY=...
OPEN_AI_KEY=...
npx prisma migrate deploynpm run devVisit http://localhost:3000 to view the app.
src/app/- Next.js app directory (routing, pages, layouts)src/components/- UI and global componentssrc/actions/- Server actions for automations, integrations, user, and webhookssrc/constants/- Static configuration (plans, menu, etc.)src/hooks/- Custom React hookssrc/lib/- Utility libraries (Prisma, Stripe, OpenAI, etc.)src/redux/- Redux slices and storeprisma/- Prisma schema and migrations