"use client"; import { JSX } from "react/jsx-runtime"; import { TypingAnimation } from "@/components/home/magicui/typing-animation"; import { motion, AnimatePresence } from "framer-motion"; import { useState } from "react"; interface IFeature { icon: JSX.Element; title: string; description: JSX.Element; } export default function FeaturesSection() { const [hoveredIndex, setHoveredIndex] = useState(null); const features: IFeature[] = [ { icon: ( ), title: "Problem Solver", description: ( <> • Understands context and nuances
• Adapts strategies in real-time
• Provides clear, actionable guidance ), }, { icon: ( ), title: "System Architect", description: ( <> • Develops scalable solutions
• Optimizes performance
• Ensures system reliability ), }, { icon: ( ), title: "Tool Crafter", description: ( <> • Creates custom solutions
• Enhances existing tools
• Maintains tool efficiency ), }, { icon: ( ), title: "Insight Explorer", description: ( <> • Researches comprehensively
• Validates information
• Synthesizes findings ), }, { icon: ( ), title: "Logic Weaver", description: ( <> • Analyzes relationships
• Builds logical frameworks
• Creates innovative solutions ), }, { icon: ( ), title: "Integration Architect", description: ( <> • Coordinates operations
• Enhances compatibility
• Optimizes workflows ), }, ]; return (

Features

ALMAZE IS LOADED WITH FEATURES

Discover the powerful features that make Almaze your ultimate AI companion.
From problem-solving to system optimization, explore what Almaze can do for you.

{features.map((feature, idx) => (
setHoveredIndex(idx)} onMouseLeave={() => setHoveredIndex(null)} > {hoveredIndex === idx && ( )}
{feature.icon}

{feature.title}

{feature.description}

))}
); }