"use client" import React from 'react'; import { motion } from 'framer-motion'; import { Button } from '@/components/ui/button'; import { Card, CardContent } from '@/components/ui/card'; import { CONTACT_DATA } from '@/services/Constants'; // Quick Actions Component const QuickActions: React.FC = () => ( {CONTACT_DATA.quickActions.map((action, index) => (

{action.title}

{action.description}

))}
); export default QuickActions