@@ -4,8 +4,8 @@ import ResponsiveBox from "../../Components/core/ResponsiveBox";
44import ConstrainedBox from "../../Components/core/constrained-box" ;
55import SectionTitle from "../../Components/common/SectionTitle" ;
66import ContactForm from "../UI/ContactForm" ;
7- import { MapPin , ArrowRight } from "lucide-react" ;
8- import { SiWhatsapp , SiGmail } from "react-icons/si" ;
7+ import { ArrowRight } from "lucide-react" ;
8+ import { SiWhatsapp , SiGmail , SiLinkedin } from "react-icons/si" ;
99import Link from "next/link" ;
1010import { motion } from "framer-motion" ;
1111
@@ -29,15 +29,34 @@ const ContactSection = ({ id }: { id: string }) => {
2929 viewport = { { once : true } }
3030 className = "flex flex-col gap-8 w-full"
3131 >
32- < div >
33- < h3 className = "text-3xl font-bold text-white mb-4" > Let's Talk</ h3 >
32+ < div className = "pt-8 bg-transparent" >
33+ < h3 className = "text-2xl font-bold text-zinc-100 mb-4" > Let's Talk</ h3 >
3434 < p className = "text-zinc-400 text-lg leading-relaxed" >
3535 I'm always open to discussing new projects, creative ideas, or opportunities to be part of your vision.
3636 </ p >
3737 </ div >
3838
3939 < div className = "space-y-4" >
4040 { /* Contact Cards */ }
41+ < Link
42+ href = "https://www.linkedin.com/in/utkarsh-sorathia-a9292b22a"
43+ target = "_blank"
44+ className = "flex items-center justify-between p-4 md:p-6 bg-white/5 dark:bg-zinc-900/50 rounded-2xl border border-zinc-100/10 dark:border-zinc-800/50 backdrop-blur-sm group hover:border-[#0077b5]/30 transition-all duration-300"
45+ >
46+ < div className = "flex items-center gap-4 md:gap-6 overflow-hidden" >
47+ < div className = "p-3 md:p-4 bg-blue-100 dark:bg-blue-900/20 rounded-xl text-[#0077b5] shrink-0" >
48+ < SiLinkedin className = "w-5 h-5 md:w-6 md:h-6" />
49+ </ div >
50+ < div className = "overflow-hidden" >
51+ < p className = "text-xs font-bold uppercase tracking-widest text-[#0077b5] mb-1 opacity-80" > LinkedIn</ p >
52+ < p className = "text-white font-semibold truncate" > utkarsh-sorathia</ p >
53+ </ div >
54+ </ div >
55+ < div className = "flex items-center gap-2 text-xs font-bold uppercase tracking-tighter text-[#0077b5] opacity-0 group-hover:opacity-100 group-hover:translate-x-1 transition-all" >
56+ Connect < ArrowRight className = "w-4 h-4" />
57+ </ div >
58+ </ Link >
59+
4160 < Link
4261 href = "mailto:utkarshsor03@gmail.com"
4362 className = "flex items-center justify-between p-4 md:p-6 bg-white/5 dark:bg-zinc-900/50 rounded-2xl border border-zinc-100/10 dark:border-zinc-800/50 backdrop-blur-sm group hover:border-[#EA4335]/30 transition-all duration-300"
@@ -59,31 +78,21 @@ const ContactSection = ({ id }: { id: string }) => {
5978 < Link
6079 href = "https://wa.me/918758453292"
6180 target = "_blank"
62- className = "flex items-center justify-between p-4 md:p-6 bg-white/5 dark:bg-zinc-900/50 rounded-2xl border border-zinc-100/10 dark:border-zinc-800/50 backdrop-blur-sm group transition-all duration-300"
81+ className = "flex items-center justify-between p-4 md:p-6 bg-white/5 dark:bg-zinc-900/50 rounded-2xl border border-zinc-100/10 dark:border-zinc-800/50 backdrop-blur-sm group hover:border-[#25D366]/30 transition-all duration-300"
6382 >
6483 < div className = "flex items-center gap-4 md:gap-6" >
6584 < div className = "p-3 md:p-4 bg-green-100 dark:bg-green-900/20 rounded-xl text-[#25D366] shrink-0" >
6685 < SiWhatsapp className = "w-5 h-5 md:w-6 md:h-6" />
6786 </ div >
6887 < div >
6988 < p className = "text-xs font-bold uppercase tracking-widest text-[#25D366] mb-1 opacity-80" > WhatsApp</ p >
70- < p className = "text-white font-semibold" > +91 8758453292 </ p >
89+ < p className = "text-white font-semibold" > Utkarsh Sorathia </ p >
7190 </ div >
7291 </ div >
7392 < div className = "flex items-center gap-2 text-xs font-bold uppercase tracking-tighter text-[#25D366] opacity-0 group-hover:opacity-100 group-hover:translate-x-1 transition-all" >
7493 Chat Now < ArrowRight className = "w-4 h-4" />
7594 </ div >
7695 </ Link >
77-
78- < div className = "flex items-center gap-4 md:gap-6 p-4 md:p-6 bg-white/5 dark:bg-zinc-900/50 rounded-2xl shadow-sm border border-zinc-100/10 dark:border-zinc-800/50 backdrop-blur-sm" >
79- < div className = "p-3 md:p-4 bg-purple-100 dark:bg-purple-900/30 rounded-xl text-purple-600 dark:text-purple-400 shrink-0" >
80- < MapPin className = "w-5 h-5 md:w-6 md:h-6" />
81- </ div >
82- < div >
83- < p className = "text-xs font-bold uppercase tracking-widest text-purple-400 mb-1 opacity-80" > Location</ p >
84- < p className = "text-white font-semibold" > Surat, Gujarat, India</ p >
85- </ div >
86- </ div >
8796 </ div >
8897 </ motion . div >
8998
0 commit comments