"use client"; import { useState, useEffect } from 'react' import PageTitle from '@/components/ui/PageTitle'; import { Typography, Button } from 'antd' import { CheckCircleOutlined, XOutlined } from '@ant-design/icons'; const { Text, Title } = Typography; const basicPlan = [ { available: true, text: "Manual Knowledge Entry" }, { available: true, text: "Upload 5 Text Docs/months" }, { available: false, text: "No Web Link Import" }, { available: false, text: "No Image-to-text OCR" }, { available: false, text: "No SOP Auto-Learning" }, { available: true, text: "Max 10 Knowledge Sources" }, { available: true, text: "Email Support" } ] const standardPlan = [ { available: true, text: "Manual Knowledge Entry" }, { available: true, text: "Upload 5 Text Docs/months" }, { available: true, text: "No Web Link Import" }, { available: true, text: "No Image-to-text OCR" }, { available: false, text: "No SOP Auto-Learning" }, { available: true, text: "Max 10 Knowledge Sources" }, { available: true, text: "Email Support" } ] const premiumPlan = [ { available: true, text: "Manual Knowledge Entry" }, { available: true, text: "Upload 5 Text Docs/months" }, { available: true, text: "No Web Link Import" }, { available: true, text: "No Image-to-text OCR" }, { available: true, text: "No SOP Auto-Learning" }, { available: true, text: "Max 10 Knowledge Sources" }, { available: true, text: "Email Support" } ] const CreatePersona: React.FC = () => { return (
Basic
$5

Per agent

Per month

ideal for simple, entry-level AI personas

{basicPlan.map(({available, text}) => (
{(available) ? : } {text}
))}
Standard
$15

Per agent

Per month

Perfect for growing AI needs

{standardPlan.map(({available, text}) => (
{(available) ? : } {text}
))}
Premium
$45

Per agent

Per month

Perfect for large enterprise AI model

{premiumPlan.map(({available, text}) => (
{(available) ? : } {text}
))}
) } export default CreatePersona