"use client"; import React from "react"; import { motion } from "framer-motion"; import { Badge } from "@/components/ui/badge"; import { CONTACT_DATA } from "@/services/Constants"; const HeroSection: React.FC = () => ( {CONTACT_DATA.hero.badge}

{CONTACT_DATA.hero.title}{" "} us

{CONTACT_DATA.hero.description}

{CONTACT_DATA.hero.subtitle}

); export default HeroSection;