From daa6702d9b06c383fac9d3097908183d8ddb29a8 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Fri, 12 Sep 2025 17:42:52 +0200 Subject: [PATCH] ok --- src/components/HomeAbout.tsx | 63 +++++++++++++++++------------------- src/images/diamond.svg | 1 + 2 files changed, 30 insertions(+), 34 deletions(-) create mode 100644 src/images/diamond.svg diff --git a/src/components/HomeAbout.tsx b/src/components/HomeAbout.tsx index 2fefbbb..aa21cc9 100644 --- a/src/components/HomeAbout.tsx +++ b/src/components/HomeAbout.tsx @@ -5,13 +5,33 @@ import { motion } from 'framer-motion' import { TypeAnimation } from 'react-type-animation' import { Dialog, DialogPanel } from '@headlessui/react' import { Bars3Icon, XMarkIcon, ChevronDoubleDownIcon } from '@heroicons/react/24/outline' +import Image from 'next/image' +import diamondSvg from '@/images/diamond.svg' const navigation = [ { name: 'Product', href: '#' }, { name: 'Features', href: '#' }, { name: 'Marketplace', href: '#' }, { name: 'Company', href: '#' }, -] +]; + +const features = [ + 'Data Orchestration', + 'Data Cleaning', + 'Real-time Monitoring', + 'Query Optimization', + 'Report Generation', + 'Metadata Management', + 'Model Monitoring', + 'Cost Optimization', + 'API Integration', + 'Access Control', + 'Log Processing', + 'Synthetic Data', + 'Code Intelligence', + 'Incident Automation', + 'Data Discovery', +]; export function HomeAbout() { const [mobileMenuOpen, setMobileMenuOpen] = useState(false) @@ -53,39 +73,14 @@ export function HomeAbout() { With Mycelium, you could deploy AI agents that handle your most complex workflows while maintaining complete data sovereignty and control. -
-
-

Data Orchestration

-

Data Cleaning

-

Real-time Monitoring

-

Query Optimization

-

Report Generation

-

Metadata Management

-

Model Monitoring

-

Cost Optimization

-

API Integration

-

Access Control

-

Log Processing

-

Synthetic Data

-

Code Intelligence

-

Incident Automation

-

Data Discovery

- {/* Duplicate for seamless scroll */} - - - - - - - - - - - - - - - +
+
+ {[...features, ...features].map((feature, index) => ( +
= features.length}> + +

{feature}

+
+ ))}
diff --git a/src/images/diamond.svg b/src/images/diamond.svg new file mode 100644 index 0000000..8973089 --- /dev/null +++ b/src/images/diamond.svg @@ -0,0 +1 @@ + \ No newline at end of file