"use client"; import React, { useState } from 'react'; import { motion } from 'framer-motion'; import { ChevronDown, ChevronUp, Code, Users, CreditCard, BarChart, Share } from 'lucide-react'; import Navbar from '@/components/Navbar/navbar'; import HowItWorks from './how-it-works'; import Footer from '@/components/footer'; const MicroSAASLanding = () => { const [expandedIndex, setExpandedIndex] = useState(null); const [expandedFaq, setExpandedFaq] = useState(null); const features = [ { icon: , title: "No-Code, Fast Deployment", description: "Our drag-and-drop builder allows you to convert your services into an AI-powered solution in minutes—no technical skills required.", gradient: "from-pink-500/20 to-purple-500/20" }, { icon: , title: "Monetization Made Simple", description: "Integrate subscription billing and unlock recurring revenue streams from day one.", gradient: "from-blue-500/20 to-cyan-500/20" }, { icon: , title: "Community-Centric Growth", description: "Build and nurture a dedicated community around your MicroSAAS, boosting customer loyalty and creating opportunities for upselling.", gradient: "from-green-500/20 to-emerald-500/20" }, { icon: , title: "All-in-One Platform", description: "Manage your AI agents, community interactions, and monetization strategies from a single, easy-to-use dashboard.", gradient: "from-orange-500/20 to-yellow-500/20" } ]; const steps = [ { title: "Convert Your Expertise", description: "Use our intuitive no-code tools to transform your existing service into a fully functional AI agent." }, { title: "Launch Your MicroSAAS", description: "Deploy your AI agent with integrated subscription management and analytics." }, { title: "Grow Your Community", description: "Engage your audience with community forums, newsletters, and in-app engagement tools." } ]; const testimonials = [ { quote: "I turned my consulting expertise into an AI-powered MicroSAAS, and my community has grown exponentially.", author: "Samantha T.", role: "Business Strategist" }, { quote: "The no-code builder made it incredibly easy to launch my MicroSAAS. Now, I generate consistent revenue through my engaged community.", author: "Marcus L.", role: "Digital Marketer" } ]; const faqs = [ { question: "What exactly is a MicroSAAS?", answer: "A MicroSAAS is a lean, specialized software service delivered on a subscription basis, often powered by AI to automate tasks and provide personalized solutions." }, { question: "Do I need technical skills to build my MicroSAAS?", answer: "Not at all! Our platform is designed for non-technical users with an intuitive, drag-and-drop interface and comprehensive support resources." }, { question: "How can I grow my community?", answer: "Use our built-in community tools—forums, chat, newsletters—to engage your users, gather feedback, and offer premium content that drives loyalty and additional revenue." } ]; return (
{/* Hero Section */}

Build Your MicroSAAS & Grow Your Community

Transform your expertise into a dynamic, AI-powered MicroSAAS and build a thriving community around your niche offering. Our platform equips you with everything you need—from a no-code builder to integrated community tools—to launch, grow, and monetize your MicroSAAS with ease.

{/* What is MicroSAAS Section */}
What Is MicroSAAS? MicroSAAS is the next evolution in software services: a lean, hyper-focused, subscription-based solution that leverages AI to solve specific problems for targeted audiences.
{/* How it Works Section */} {/*

How It Works

{steps.map((step, index) => (
{index + 1}

{step.title}

{step.description}

))}
*/} {/* Features Section */}

Features

Everything You Need to Create, Manage, and Monetize Your AI Offerings

{features.map((vertical, index) => (
{/* Main row - always visible */}
setExpandedIndex(expandedIndex === index ? null : index)} >
{/* Icon */}
{vertical.icon}
{/* Title */}

{vertical.title}

{/* Expand/Collapse icon */}
{/* Expanded content */}
{vertical.description}
{/* Action button */}
))}
{/* Testimonials Section */}

Success Stories

{testimonials.map((testimonial, index) => (

"{testimonial.quote}"

{testimonial.author}

{testimonial.role}

))}
{/* CTA Section */}

Ready to Monetize Your Expertise?

Unlock the power of AI and community building to create a sustainable, recurring revenue model with your very own MicroSAAS.

{/* FAQ Section */}

Frequently Asked Questions

{faqs.map((faq, index) => (
{expandedFaq === index && (

{faq.answer}

)}
))}
); }; export default MicroSAASLanding;