From f30006a9835f3b9282e524cdb53091a0b0509b9a Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Wed, 22 Oct 2025 17:34:12 +0200 Subject: [PATCH] chore: delete unused icon.svg file --- public/images/logos/icon.svg | 1 - src/pages/agents/AgentsPage.tsx | 6 +++ src/pages/agents/Companies.tsx | 76 +++++++++++++++++++++++++++++++++ 3 files changed, 82 insertions(+), 1 deletion(-) delete mode 100644 public/images/logos/icon.svg create mode 100644 src/pages/agents/Companies.tsx diff --git a/public/images/logos/icon.svg b/public/images/logos/icon.svg deleted file mode 100644 index 2461743..0000000 --- a/public/images/logos/icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/pages/agents/AgentsPage.tsx b/src/pages/agents/AgentsPage.tsx index 83b17c5..5e3deb3 100644 --- a/src/pages/agents/AgentsPage.tsx +++ b/src/pages/agents/AgentsPage.tsx @@ -1,6 +1,7 @@ import { AnimatedSection } from '../../components/AnimatedSection' import { DeploySection } from './DeploySection' import { GallerySection } from './GallerySection' +import { Companies } from './Companies' import { BentoSection } from './BentoSection' export default function AgentsPage() { @@ -9,6 +10,11 @@ export default function AgentsPage() { + + + + + diff --git a/src/pages/agents/Companies.tsx b/src/pages/agents/Companies.tsx new file mode 100644 index 0000000..d438d63 --- /dev/null +++ b/src/pages/agents/Companies.tsx @@ -0,0 +1,76 @@ +"use client"; + +import React from "react"; +import { motion } from "framer-motion"; +import { P, Eyebrow } from '@/components/Texts'; +import { InfiniteMovingCards } from "@/components/magicui/infinite-moving-cards"; + + + +import Ai21 from '@/components/logos/Ai21'; +import Claude from '@/components/logos/Claude'; +import BaiduCloud from '@/components/logos/BaiduCloud'; +import ByteDance from '@/components/logos/ByteDance'; +import DeepSeek from '@/components/logos/DeepSeek'; +import DeepMind from '@/components/logos/DeepMind'; +import Minimax from '@/components/logos/Minimax'; +import Mistral from '@/components/logos/Mistral'; +import Moonshot from '@/components/logos/Moonshot'; +import TencentCloud from '@/components/logos/TencentCloud'; +import OpenAI from '@/components/logos/OpenAI'; +import XAI from '@/components/logos/XAI'; + +const logos = [ + , + , + , + , + , + , + , + , + , + , + , + , +]; + +const row1 = logos.slice(0, 6); +const row2 = logos.slice(6); + +export function Companies() { + return ( +
+
+ + {/* Heading */} + + +

+ Mycelium Cloud allows you to deploy and scale AI agents from top global providers on a decentralized, privacy-first infrastructure. +

+
+ + {/* Logos grid */} +
+ + +
+
+
+ ); +}