refonte: portfolio statique Astro (design moderne développeur)
Some checks failed
Deploy production / build-deploy (push) Failing after 56s
Some checks failed
Deploy production / build-deploy (push) Failing after 56s
- Remplace l'ancien Astro hybrid + admin par un site one-page statique (sortie static) - Thème clair/sombre sans flash, contenu typé (src/data/content.ts), zéro admin - Icônes simple-icons (SVG monochrome), polices auto-hébergées (RGPD) - SEO complet : canonical, Open Graph, Twitter Card, JSON-LD Person, robots.txt, sitemap.xml, image OG 1200x630 - CI Gitea de déploiement FTPS vers Plesk (.gitea/workflows/prod.yml)
This commit is contained in:
19
src/components/Interests.astro
Normal file
19
src/components/Interests.astro
Normal file
@@ -0,0 +1,19 @@
|
||||
---
|
||||
import Icon from "./Icon.astro";
|
||||
import { interests } from "../data/content";
|
||||
---
|
||||
<section class="section container" id="interets">
|
||||
<div class="reveal" style="margin-bottom:32px;">
|
||||
<div class="eyebrow">05 / à-côté</div>
|
||||
<h2 class="h2">Centres d'intérêt</h2>
|
||||
</div>
|
||||
<div class="reveal interests">
|
||||
{interests.map((it) => (
|
||||
<div class="interest">
|
||||
<span class="interest-ic"><Icon name={it.icon} size={20} /></span>
|
||||
<div class="interest-name">{it.name}</div>
|
||||
<div class="interest-note">{it.note}</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</section>
|
||||
Reference in New Issue
Block a user