mirror of
https://github.com/Motion-Games/MotionWebStudio.git
synced 2026-04-21 17:10:54 +02:00
20 lines
865 B
TypeScript
20 lines
865 B
TypeScript
|
|
import React from 'react';
|
||
|
|
import { LucideIcon } from 'lucide-react';
|
||
|
|
|
||
|
|
interface ServiceCardProps {
|
||
|
|
title: string;
|
||
|
|
description: string;
|
||
|
|
Icon: LucideIcon;
|
||
|
|
}
|
||
|
|
|
||
|
|
export const ServiceCard: React.FC<ServiceCardProps> = ({ title, description, Icon }) => {
|
||
|
|
return (
|
||
|
|
<div className="bg-white p-8 rounded-2xl shadow-lg hover:shadow-2xl transition-all duration-300 border border-gray-100 group">
|
||
|
|
<div className="w-14 h-14 bg-purple-50 rounded-xl flex items-center justify-center mb-6 group-hover:bg-primary transition-colors duration-300">
|
||
|
|
<Icon className="w-7 h-7 text-primary group-hover:text-white transition-colors duration-300" />
|
||
|
|
</div>
|
||
|
|
<h3 className="text-xl font-bold mb-3 text-gray-900 group-hover:text-primary transition-colors">{title}</h3>
|
||
|
|
<p className="text-gray-600 leading-relaxed">{description}</p>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|