);
};
const defaultFeaturesData = [
{
title: "No-Code AI Builder",
description: "Design, test, and deploy AI agents effortlessly. Create powerful AI applications without any coding knowledge required.",
vector: ,
},
{
title: "Creative Suite",
description: "Access powerful forms, video editing, and content creation tools to bring your vision to life. Transform your ideas into polished, professional content.",
vector: ,
},
{
title: "Community & Marketplace",
description: "Grow your audience on your own platform or join our marketplace to reach thousands of SMBs. Build and nurture your community while expanding your reach.",
vector: ,
},
{
title: "Subscription-Based Monetization",
description: "Generate recurring revenue with our seamless subscription integration. Turn your AI solutions into a sustainable business model.",
vector: ,
},
];
interface Feature {
title: string;
description: string;
vector: React.ReactNode;
}
export default function Features({ featuresData }: { featuresData?: Feature[] }) {
const dataToUse = featuresData || defaultFeaturesData;
return (
Everything You Need to Create, Manage, and Monetize Your AI Offerings
{/* Increased spacing between features */}
{dataToUse.map((feature, index) => (