forked from emre/www_projectmycelium_com
feat: add video previews and text components to agent showcase sections
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
'use client'
|
||||
|
||||
import React, { useRef } from 'react'
|
||||
import { useRef } from 'react'
|
||||
import { motion, useInView } from 'framer-motion'
|
||||
import { SectionHeader, P, Eyebrow, FeatureTitle, FeatureDescription } from '@/components/Texts'
|
||||
import { SectionHeader, P, Eyebrow, CT, CP } from '@/components/Texts'
|
||||
import { TbCircleNumber1Filled, TbCircleNumber2Filled, TbCircleNumber3Filled } from 'react-icons/tb'
|
||||
|
||||
const features = [
|
||||
@@ -61,8 +61,8 @@ export function DeploySection() {
|
||||
className="rounded-2xl border border-gray-300 p-8 transition-all duration-300 ease-in-out hover:scale-105 hover:border-cyan-500 hover:shadow-lg hover:shadow-cyan-500/20 bg-white/5 backdrop-blur-md"
|
||||
>
|
||||
<feature.icon className="h-8 w-8 mb-4 text-white" />
|
||||
<FeatureTitle as="span" className="font-semibold" color="light">{feature.name}</FeatureTitle>
|
||||
<FeatureDescription className="mt-2 text-sm" color="light">{feature.description}</FeatureDescription>
|
||||
<CT as="span" className="font-semibold text-left" color="light">{feature.name}</CT>
|
||||
<CP className="mt-2 text-sm text-left" color="light">{feature.description}</CP>
|
||||
</motion.li>
|
||||
))}
|
||||
</motion.ul>
|
||||
|
||||
Reference in New Issue
Block a user