import React from 'react'; import { motion } from 'framer-motion'; import { Mail, MapPin } from 'lucide-react'; import { FaGithub, FaLinkedin, FaTwitter } from 'react-icons/fa'; import Button from '../../../shared/components/Button'; import AnimatedSection from '../../../shared/components/AnimatedSection'; export const ContactSection: React.FC = () => { const containerVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.2, delayChildren: 0.3, }, }, }; const itemVariants = { hidden: { opacity: 0, y: 20 }, visible: { opacity: 1, y: 0, transition: { duration: 0.6 }, }, }; return (
{/* Section Header */}
Kontakt aufnehmen

Lass uns zusammenarbeiten

Hast du ein Projekt? Lass uns besprechen, wie wir deine Idee umsetzen.

{/* Content Grid */}
{/* Contact Form */}