import React, { FC } from 'react'; import { motion } from 'framer-motion'; import { FadeIn } from '../components/FadeIn'; interface ServiceItemProps { number: string; name: string; description: string; delay: number; } /** * Individual service item component. */ const ServiceItem: FC = ({ number, name, description, delay }) => { return ( {/* Number */}
{number}
{/* Content */}

{name}

{description}

); }; /** * Services Section component. */ export const ServicesSection: FC = () => { const services = [ { number: "01", name: "3D Modeling", description: "Creation of detailed objects, characters, or environments tailored to specific client needs, ideal for games, products, and visualizations." }, { number: "02", name: "Rendering", description: "High-quality, photorealistic renders that showcase designs with custom lighting, textures, and materials to bring concepts to life." }, { number: "03", name: "Motion Design", description: "Dynamic animations and motion graphics that add energy and storytelling to brands, products, and digital experiences." }, { number: "04", name: "Branding", description: "Crafting cohesive visual identities -- from logos to full brand systems -- that communicate a clear and memorable presence." }, { number: "05", name: "Web Design", description: "Designing clean, modern, and conversion-focused websites with attention to layout, typography, and user experience." }, ]; return (
{/* Heading */}

Services

{/* Service List */}
{services.map((service, index) => ( ))}
); };