Files
ATS-HRMS/app/(public)/contact/_components/HeroSection.tsx
2025-12-02 14:42:40 +05:30

32 lines
1004 B
TypeScript

"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 = () => (
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
className="text-center mb-16 mt-10"
>
<Badge className="mb-4 px-4 py-2 bg-purple-100 text-purple-700">
{CONTACT_DATA.hero.badge}
</Badge>
<h1 className="text-4xl md:text-5xl lg:text-6xl font-bold text-gray-900 mb-6">
{CONTACT_DATA.hero.title}{" "}
<span className="bg-gradient-to-r from-purple-600 to-pink-600 bg-clip-text text-transparent">
us
</span>
</h1>
<p className="text-lg md:text-xl text-gray-600 mb-2 max-w-3xl mx-auto">
{CONTACT_DATA.hero.description}
</p>
<p className="text-lg md:text-xl text-gray-600 max-w-3xl mx-auto">
{CONTACT_DATA.hero.subtitle}
</p>
</motion.div>
);
export default HeroSection;