import React, { FC } from 'react'; import { motion } from 'framer-motion'; import { DecorativeImage } from '../components/DecorativeImage'; import { FadeIn } from '../components/FadeIn'; import { ContactButton } from '../components/ContactButton'; interface AboutSectionProps { // No props needed for now, but good practice } /** * About Section component. */ export const AboutSection: FC = () => { const decorativeImages = [ { src: "https://shrug-person-78902957.figma.site/_components/v2/ebb2b8f25d8e24d5f0a5ca8af4c950de81aa2fd7/moon_icon.11395d36.png", alt: "Moon Icon", className: "w-[120px] sm:w-[160px] md:w-[210px]", delay: 0.1, x: -80, y: 0, }, { src: "https://shrug-person-78902957.figma.site/_components/v2/ebb2b8f25d8e24d5f0a5ca8af4c950de81aa2fd7/p59_1.4659672e.png", alt: "3D Object", className: "w-[100px] sm:w-[140px] md:w-[180px]", delay: 0.25, x: -80, y: 0, }, { src: "https://shrug-person-78902957.figma.site/_components/v2/ebb2b8f25d8e24d5f0a5ca8af4c950de81aa2fd7/lego_icon-1.703bb594.png", alt: "Lego Icon", className: "w-[120px] sm:w-[160px] md:w-[210px]", delay: 0.15, x: 80, y: 0, }, { src: "https://shrug-person-78902957.figma.site/_components/v2/ebb2b8f25d8e24d5f0a5ca8af4c950de81aa2fd7/Group_134-1.2e04f3ce.png", alt: "3D Group", className: "w-[130px] sm:w-[170px] md:w-[220px]", delay: 0.3, x: 80, y: 0, }, ]; return (
{/* Decorative Images */}
{decorativeImages.map((img, index) => ( ))}
{/* Content */}
{/* Heading */} About me
{/* Animated Paragraph */}
{/* Contact Button */}
Let's Talk
); };