"use client"; import { useRef } from "react"; import { JSX } from "react/jsx-runtime"; import Image from "next/image"; import img1 from "@/public/assets/logo/logo.png" import { TypingAnimation } from "@/components/ui/animations/typing-animation"; import { AnimatedBeam } from "@/components/ui/animations/animated-beam"; import { motion } from "framer-motion"; interface IAgent { icon: JSX.Element; color: string; title: string; } export default function AgentsSection() { const containerRef = useRef(null); const logoRef = useRef(null); const div1Ref = useRef(null); const div2Ref = useRef(null); const div3Ref = useRef(null); const div4Ref = useRef(null); const div5Ref = useRef(null); const agents: IAgent[] = [ { icon: ( ), color: "#30A5FF", title: "Nexus", }, { icon: ( ), color: "#30A5FF", title: "Lumina", }, { icon: ( ), color: "#30A5FF", title: "Bridge", }, { icon: ( ), color: "#FFFFFF", title: "Hub", }, { icon: ( ), color: "#FF5C3D", title: "Spark", }, ]; return (

Agents

5 AGENTS POWERING DOTBASE

{/*

Meet the core agents driving ALMAZE

*/}
{agents.map((agent, index) => { return (
{agent.icon}

{agent.title}

{/*

{agent.description}

*/}
); })}
); }