23 lines
621 B
Plaintext
23 lines
621 B
Plaintext
---
|
|
// Import necessary components and utilities
|
|
import Layout from "../layouts/Layout.astro";
|
|
import BigCard from "../components/BigCard.astro";
|
|
import { t, DEFAULT_LANGUAGE } from "../lib/i18n";
|
|
|
|
// Use Spanish as default language
|
|
const currentLang = DEFAULT_LANGUAGE;
|
|
---
|
|
|
|
<Layout title={t('nav.home', currentLang)} description="Pole Elements">
|
|
<div class="container mx-auto p-4">
|
|
<div class="py-12">
|
|
<BigCard
|
|
url="/elements"
|
|
title={t('elements.title', currentLang)}
|
|
description={t('elements.description', currentLang)}
|
|
ctaText={t('elements.view', currentLang)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</Layout>
|