This commit is contained in:
2025-08-26 16:41:19 +02:00
parent 8d2135ead8
commit 93301696cf
5 changed files with 7 additions and 7 deletions

View File

@@ -76,12 +76,12 @@ export default function ServiceSection({ service, index }: Props) {
{/* Visual card */}
<div className="border rounded-xl p-8 flex flex-col items-center justify-center text-center">
{service.image && (
<div className="mb-4 h-24 w-24 border rounded-lg overflow-hidden">
<div className="mb-6 h-80 w-80 border rounded-lg overflow-hidden">
<Image
src={service.image}
alt={service.title}
width={96}
height={96}
width={320}
height={320}
className="h-full w-full object-cover"
/>
</div>