diff --git a/public/images/deployment.webp b/public/images/deployment.webp new file mode 100644 index 0000000..1e7cd90 Binary files /dev/null and b/public/images/deployment.webp differ diff --git a/src/components/Archives/Steps copy.tsx b/src/components/Archives/Steps copy.tsx new file mode 100644 index 0000000..4bf0100 --- /dev/null +++ b/src/components/Archives/Steps copy.tsx @@ -0,0 +1,71 @@ +'use client' + +import React, { useRef } from 'react' +import { motion, useInView } from 'framer-motion' +import { H2, P, CT, CP } from '@/components/Texts' +import { TbCircleNumber1Filled, TbCircleNumber2Filled, TbCircleNumber3Filled } from 'react-icons/tb' + +const features = [ + { + name: 'Choose Your Intelligence', + description: 'Explore a library of leading LLMs and agentic functions. Pick the ones that fit your use case, from general assistants to specialized reasoning models.', + icon: TbCircleNumber1Filled, + }, + { + name: 'Add Your Knowledge', + description: + 'Connect your data or knowledge base to enable personalized, context-aware results while keeping your information private.', + icon: TbCircleNumber2Filled, + }, + { + name: 'Define Your Network', + description: + 'Set up and manage your nodes with ease. Scale compute and storage as you grow, while staying fully sovereign and decentralized.', + icon: TbCircleNumber3Filled, + }, +] + +export function Steps() { + const ref = useRef(null); + const isInView = useInView(ref, { once: true }); + + return ( +
+
+ +

+ Deploy Scalable LLMs and AI Agents in Seconds +

+

+ Launch and scale intelligence on your own terms. Mycelium Cloud makes it simple to deploy models, integrate knowledge, and run everything on a network you control. +

+
+ + {features.map((feature, index) => ( + + + {feature.name} + {feature.description} + + ))} + +
+
+ ) +} diff --git a/src/components/Steps.tsx b/src/components/Steps.tsx index 4bf0100..f71ef32 100644 --- a/src/components/Steps.tsx +++ b/src/components/Steps.tsx @@ -30,18 +30,19 @@ export function Steps() { const isInView = useInView(ref, { once: true }); return ( -
-
+
+
+
-

+

Deploy Scalable LLMs and AI Agents in Seconds

-

+

Launch and scale intelligence on your own terms. Mycelium Cloud makes it simple to deploy models, integrate knowledge, and run everything on a network you control.

@@ -57,11 +58,11 @@ export function Steps() { initial={{ opacity: 0, y: 20 }} animate={isInView ? { opacity: 1, y: 0 } : { opacity: 0, y: 20 }} transition={{ duration: 0.5, delay: 0.3 + index * 0.2 }} - className="rounded-2xl border border-gray-200 p-8 dark:border-gray-700" + className="rounded-2xl border border-white/20 bg-black/20 p-8 backdrop-blur-sm" > - - {feature.name} - {feature.description} + + {feature.name} + {feature.description} ))}