"use client";
"use client";
import React from 'react';
import { motion } from 'framer-motion';
import { Code, Search, Upload, Lightbulb, Globe, CheckCircle, CreditCard, ArrowRight } from 'lucide-react';
import Navbar from '@/components/Navbar/navbar';
import Footer from '@/components/footer';
const AIMarketplace = () => {
const buyerBenefits = [
{
title: "Seamless Integration",
desc: "Easily download, deploy, or subscribe to the code that fits your needs, and start enhancing your operations immediately.",
icon:
},
{
title: "Tailored for SMBs",
desc: "Explore solutions that simplify everyday tasks—from smart customer support to automated financial insights—ensuring that every tool is both practical and powerful.",
icon:
},
{
title: "Secure & Reliable",
desc: "All our offerings are thoroughly vetted, ensuring you receive only the best and most secure AI solutions on the market.",
icon:
}
];
const sellerBenefits = [
{
title: "Effortless Listing",
desc: "Our streamlined process makes it simple to upload your code, set your subscription plans, and start selling without any hassle.",
icon:
},
{
title: "Global Exposure",
desc: "Connect with SMBs and enterprises worldwide who are eager to integrate innovative AI solutions into their operations.",
icon:
},
{
title: "Flexible Monetization",
desc: "Choose from various pricing models—one-time downloads, subscriptions, or even usage-based fees—to best suit your business and maximize revenue.",
icon:
}
];
return (
{/* Hero Section */}
{/* Animated Gradient Background */}
AI
{" "}Marketplace{" "}
Your One-Stop Hub for Ready-to-Go AI Solutions
Discover a curated collection of innovative AI-powered apps and agents designed to streamline your business operations. Whether you’re looking to download, deploy, or subscribe to smart solutions, our marketplace is built to empower your growth—all at the click of a button.
{/* For Buyers Section */}
For Buyers: Instant Innovation
Unlock a world of possibilities with our ready-to-go apps and agents. Each solution is designed with simplicity and effectiveness in mind, so you can focus on what matters most—growing your business.
{buyerBenefits.map((benefit, index) => (
{/* Icon + Title */}
{benefit.icon}
{benefit.title}
{/* Description */}
{benefit.desc}
{/* Soft Glow Effect */}
))}
{/* For Sellers Section */}
For Sellers: Showcase & Monetize Your Innovations
Turn your creativity into recurring revenue by listing your AI apps and agents on our marketplace. Reach a global audience and let your solutions speak for themselves.
{sellerBenefits.map((benefit, index) => (
{/* Icon + Title */}
{benefit.icon}
{benefit.title}
{/* Description */}
{benefit.desc}
{/* Soft Glow Effect */}
))}
{/* How It Works Section */}
How It Works
{/* Buyers */}
For Buyers:
-
Discover: Browse our extensive library of AI solutions.
-
Deploy: Download or subscribe to the code with a few simple clicks.
-
Transform: Integrate the solution into your business and experience the benefits immediately.
{/* Soft Glow Effect */}
{/* Sellers */}
For Sellers:
-
List: Upload your ready-to-go app or agent, and choose your pricing model.
-
Promote: Leverage our global platform to showcase your innovation.
-
Profit: Monetize your expertise and watch your revenue grow with every subscription or download.
{/* Soft Glow Effect */}
{/* Why Choose Our Marketplace Section */}
Why Choose Our Marketplace?
{[
{ icon: , title: "Curated Quality", desc: "Every solution is handpicked and continuously updated to ensure peak performance and security.", color: "from-green-500 to-emerald-500" },
{ icon: , title: "Ease of Use", desc: "Designed for both buyers and sellers, our intuitive interface makes finding and listing products a breeze.", color: "from-yellow-500 to-orange-500" },
{ icon:
, title: "Comprehensive Support", desc: "Access detailed documentation, tutorials, and dedicated support to help you get the most out of our platform.", color: "from-blue-500 to-cyan-500" },
{ icon: , title: "Community-Driven", desc: "Join a thriving ecosystem of innovators and forward-thinking businesses ready to redefine their industries with AI.", color: "from-purple-500 to-indigo-500" }
].map((item, index) => (
-
{/* Icon */}
{item.icon}
{/* Text Content */}
{/* Soft Glow Effect */}
))}
{/* Final CTA Section */}
Embrace the future of AI-powered business solutions.
Whether you’re here to discover cutting-edge apps or to share your innovations with the world, our marketplace is your launchpad for success.
Browse Solutions
List Your Product
);
};
export default AIMarketplace;