feat(layout): add footer component and centralize imports in Landing layout

This commit is contained in:
2026-02-25 17:56:39 -06:00
parent 28c2465afc
commit ad3eb66144
3 changed files with 34 additions and 6 deletions

View File

@@ -0,0 +1,25 @@
---
import { css } from '@styled-system/css'
const footerLegendClass = css({
paddingBlock: 'md',
textAlign: 'center',
fontSize: 'sm'
})
const footerLegendHeartClass = css({
color: 'red'
})
---
<footer>
<p class={footerLegendClass}>
Hecho con
<span class={footerLegendHeartClass}
><i class="fa-solid fa-heart"></i></span
>
y
<a href="https://astro.build">Astro</a>
por
<a href="https://srjuggernaut.dev">Jugger</a>.
</p>
</footer>