import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Mail, Phone, MapPin, Github, Linkedin } from "lucide-react"; interface ContactSectionProps { profile: { name: string; email: string; phone?: string; location: string; githubUrl?: string; linkedinUrl?: string; }; } export function ContactSection({ profile }: ContactSectionProps) { return (

Get In Touch

Let's Work Together I'm always interested in new opportunities and exciting projects. Feel free to reach out if you'd like to collaborate!
{profile.phone && ( )}

Location

{profile.location}

{profile.githubUrl && ( )} {profile.linkedinUrl && ( )}
); }