"use client"; import React from "react"; import { motion } from "framer-motion"; import { CONTACT_DATA } from "@/services/Constants"; const GetInTouch: React.FC = () => { return (
{/* Background Gradient Blobs */}
{/* Title */} {CONTACT_DATA.getInTouch.title} Let’s Connect {CONTACT_DATA.getInTouch.description} {/* Contact Methods */}
{CONTACT_DATA.getInTouch.methods.map((method, index) => ( {/* Icon */}

{method.title}

{method.description}

{method.contact}

))}
); }; export default GetInTouch;