+
A complete infrastructure for building and deploying AI agents with enterprise-grade security and performance.
{item.subtitle}
-{item.description}
+{item.description}
))} diff --git a/src/pages/agents/GallerySection.tsx b/src/pages/agents/GallerySection.tsx index f7d7ecf..890633f 100644 --- a/src/pages/agents/GallerySection.tsx +++ b/src/pages/agents/GallerySection.tsx @@ -1,58 +1,178 @@ -import { motion } from 'framer-motion' -import { Container } from '../../components/Container' +'use client' + +import { useEffect, useMemo, useState } from 'react' +import { useResponsiveCarousel } from '@/hooks/useResponsiveCarousel'; +import { motion, AnimatePresence } from 'framer-motion' +import { wrap } from 'popmotion' +import { Button } from '@/components/Button'; +import { SectionHeader, P, Eyebrow } from '@/components/Texts'; +import { TypeAnimation } from 'react-type-animation' +import { FadeIn } from '@/components/FadeIn'; const galleryItems = [ - { text: 'Navigate and interact with any web interface', image: '/images/gallery/interface.jpg' }, - { text: 'Process documents across all formats', image: '/images/gallery/docs.jpg' }, - { text: 'Execute multi-step workflows autonomously', image: '/images/gallery/flow.jpg' }, - { text: 'Manage calendars, emails, and tasks', image: '/images/gallery/calendar.jpg' }, - { text: 'Perform deep semantic search across all data sources', image: '/images/gallery/data.jpg' }, - { text: 'Identify patterns in complex datasets', image: '/images/gallery/datasets.jpg' }, + { text: 'Navigate and interact with any web interface', image: '/images/gallery/interface.jpg', width: 448, height: 277 }, + { text: 'Process documents across all formats', image: '/images/gallery/docs.jpg', width: 448, height: 277 }, + { text: 'Execute multi-step workflows autonomously', image: '/images/gallery/flow.jpg', width: 448, height: 277 }, + { text: 'Manage calendars, emails, and tasks', image: '/images/gallery/calendar.jpg', width: 448, height: 277 }, + { text: 'Perform deep semantic search across all data sources', image: '/images/gallery/data.jpg', width: 448, height: 277 }, + { text: 'Identify patterns in complex datasets', image: '/images/gallery/datasets.jpg', width: 448, height: 277 }, + { text: 'Provide real-time market intelligence', image: '/images/gallery/market.jpg', width: 448, height: 277 }, + { text: 'Generate and debug code in multiple languages', image: '/images/gallery/code.jpg', width: 448, height: 277 }, + { text: 'Create consistent branded content', image: '/images/gallery/branding.jpg', width: 448, height: 277 }, + { text: 'Translate and localize materials', image: '/images/gallery/translate.jpg', width: 448, height: 277 }, + { text: 'Transform and migrate data structures', image: '/images/gallery/structure.jpg', width: 448, height: 277 }, ] -export function GallerySection() { - return ( -- Your private agent coordinates a team of specialists that spin up on demand, collaborate across your world, and deliver end-to-end results. Many agents, one intelligence—yours. -
-{item.text}
-+ Your private agent coordinates a team of specialists that spin up on demand, collaborate across your world, and deliver end-to-end results. + Many agents, one intelligence—yours. +
+
+
+