big card component

This commit is contained in:
2025-06-22 00:46:31 +02:00
parent 470a53484b
commit 6c48ed2925
2 changed files with 14 additions and 7 deletions

View File

@@ -1,13 +1,18 @@
---
// Import necessary components and utilities
import Layout from "../layouts/Layout.astro";
import ElementsCard from "../components/ElementsCard.astro";
import BigCard from "../components/BigCard.astro";
---
<Layout title="Pole Elements" description="Pole Elements">
<div class="container mx-auto p-4">
<div class="py-12">
<ElementsCard url="/elements" />
<BigCard
url="/elements"
title="Pole Elements"
description="Explore a comprehensive collection of pole dance elements, techniques, and combinations. From basic spins to advanced tricks, discover everything you need to master pole sport."
ctaText="Explore Elements"
/>
</div>
</div>
</Layout>