"use client"; import { AudioWaveform, FileSearch2, Sparkle, Heart, MessageSquareHeart, ChartScatter, Ratio, } from "lucide-react"; const features = [ { icon: , progress: "Released", name: "Custom AI characters", description: "Choose from a variety of AI characters to interact with.", source: "images/feature2.png", }, { icon: , progress: "Released", name: "Emotion Intelligence", description: "Understand emotional trends and insights according to real time analytics.", source: "images/feature1.png", }, { icon: , progress: "Released", name: "Tiny Size", description: "As small as the Apple Watch, you can stack the device on any surface.", source: "images/feature3.png", }, { icon: , progress: "In development", name: "Custom Voice Clone", description: "Customize your AI's voice to match your preference.", source: "images/feature4.png", }, { icon: , progress: "In development", name: "Talk to your documents", description: "Our RAG implementation allows you to talk to your images, videos and documents.", source: "images/feature5.png", }, { icon: , progress: "In development", name: "Agentic AI", description: "Our agentic AI can help you with your daily tasks and reminders.", source: "images/feature6.png", }, // More features... ]; export default function FeaturesSection() { return (

Packed with features

We designed our AI platform to be a suitable companion that you can engage with anytime. Here are some of the features that we have implemented and are actively developing.

    {features.map((feature) => (
  • {feature.icon}

    {feature.name}

    {feature.description}

    {feature.progress}

    {/* */}
  • ))}
); }