"use client"; import { TypingAnimation } from "@/components/home/magicui/typing-animation"; import { FlickeringGrid } from "@/components/home/magicui/flickering-grid"; import { motion } from "framer-motion"; import { useRouter } from 'next/navigation'; import { usePrivy } from "@privy-io/react-auth"; import { useEffect } from "react"; import Cookies from 'js-cookie'; export default function CTABox() { const privy = usePrivy(); const router = useRouter(); // const handleLogin = useCallback(() => privy.login(), [privy]); useEffect(() => { if (privy?.ready) { if (privy.authenticated) { localStorage.setItem('useremail', privy.user?.email?.address ?? "Guest"); Cookies.set('privy-authenticated', 'true', { path: '/', expires: 1 }); router.push('/dashboard'); } } }, [privy.ready, privy.authenticated, router]); return (

SELF EVOLVING AGI THAT HELPS YOU COMPLETE MUNDANE TASKS

The autoagentic AGI. Almaze is a self-evolving AGI made of agents that collaborate, and build new agents
as needed, in order to complete tasks for a user.

); }