diff --git a/src/components/magicui/infinite-moving-cards.tsx b/src/components/magicui/infinite-moving-cards.tsx
index 8fbee83..90d64e4 100644
--- a/src/components/magicui/infinite-moving-cards.tsx
+++ b/src/components/magicui/infinite-moving-cards.tsx
@@ -66,37 +66,19 @@ export const InfiniteMovingCards = ({
return (
{items.map((item, idx) => (
- -
-
-
-
- {item}
-
-
+ -
+ {item}
))}
diff --git a/src/pages/agents/DeploySection.tsx b/src/pages/agents/DeploySection.tsx
index 16a1da3..e2bccfb 100644
--- a/src/pages/agents/DeploySection.tsx
+++ b/src/pages/agents/DeploySection.tsx
@@ -1,7 +1,9 @@
+'use client'
+
+import React, { useRef } from 'react'
import { motion, useInView } from 'framer-motion'
-import { useRef } from 'react'
+import { SectionHeader, P, Eyebrow, FeatureTitle, FeatureDescription } from '@/components/Texts'
import { TbCircleNumber1Filled, TbCircleNumber2Filled, TbCircleNumber3Filled } from 'react-icons/tb'
-import { Container } from '../../components/Container'
const features = [
{
@@ -24,30 +26,31 @@ const features = [
]
export function DeploySection() {
- const ref = useRef(null)
- const isInView = useInView(ref, { once: true })
+ const ref = useRef(null);
+ const isInView = useInView(ref, { once: true });
return (
-
-
+
+
-
+ Get Started
+
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}
+
+ {feature.name}
+ {feature.description}
))}
-
+
)
}
diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css
index fcfccc9..75f15d2 100644
--- a/src/styles/tailwind.css
+++ b/src/styles/tailwind.css
@@ -1,5 +1,22 @@
@import 'tailwindcss';
+@theme {
+ --animate-scroll: scroll var(--animation-duration, 40s) var(--animation-direction, forwards) linear infinite;
+
+ @keyframes scroll {
+ to {
+ transform: translate(calc(-50% - 0.5rem));
+ }
+ }
+
+ --animate-pulse-slow: pulse 6s ease-in-out infinite;
+
+ @keyframes pulse {
+ '0%, 100%': { opacity: '1' },
+ '50%': { opacity: '0.6' }
+ }
+}
+
@plugin '@tailwindcss/forms';
@theme {