achat-maison-albi-fr/src/components/sections/landing/DiagnosticsSection.astro

34 lines
1.1 KiB
Text
Raw Normal View History

2025-02-23 17:37:51 +01:00
---
import { Image } from "astro:assets";
import dpeD from "@/images/dpe-d.png"
---
2025-01-05 23:18:17 +01:00
<section
class="mx-auto max-w-[85rem] px-4 py-10 sm:px-6 lg:px-8 lg:py-14 2xl:max-w-full"
>
<!-- Title and description -->
<div class="mx-auto mb-6 w-full space-y-1 text-center sm:w-1/2 lg:w-1/3">
<h2
class="text-balance text-2xl font-bold leading-tight text-neutral-800 dark:text-neutral-200 sm:text-3xl"
>
2025-02-23 17:37:51 +01:00
Diagnostics disponibles
2025-01-05 23:18:17 +01:00
</h2>
2025-02-23 17:37:51 +01:00
<div class="text-pretty leading-tight text-neutral-600 dark:text-neutral-400">
<Image
class="mx-auto"
src={dpeD}
alt="Avatar Description"
loading={"eager"}
inferSize
/>
<p>🐜 Aucun signe dinfestation de termites ✅</p>
<p>🧯 Aucune anomalie sur linstallation de gaz ✅</p>
<p>💡 Électricité : Quelques anomalies ⚠️</p>
</div>
2025-01-05 23:18:17 +01:00
</div>
<div
class="flex flex-col items-center justify-center gap-y-2 sm:flex-row sm:gap-x-12 sm:gap-y-0 lg:gap-x-24"
>
<!-- Logos -->
</div>
</section>