vf-site/src/pages/en/apartments/index.astro

21 lines
996 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
import BaseLayout from '../../../layouts/BaseLayout.astro';
---
<BaseLayout title="Apartments" lang="en">
<div class="mx-auto max-w-6xl px-6 py-10">
<h1 class="text-3xl font-semibold">Apartments</h1>
<div class="mt-6 grid md:grid-cols-2 gap-6">
<article class="rounded-lg border border-slate-200 p-4">
<h2 class="text-lg font-semibold">T2 Corail</h2>
<p class="text-sm text-slate-600">45 m² • 23 guests • 1 queen + sofabed • €59/night</p>
<a href="/en/apartments/t2-corail/" class="mt-3 inline-block text-brand-600 underline">Discover</a>
</article>
<article class="rounded-lg border border-slate-200 p-4">
<h2 class="text-lg font-semibold">T3 Azur</h2>
<p class="text-sm text-slate-600">55 m² • up to 4 guests • 2 queen beds • €79/night</p>
<a href="/en/apartments/t3-azur/" class="mt-3 inline-block text-brand-600 underline">Discover</a>
</article>
</div>
</div>
</BaseLayout>