feat: add collection for authors

This commit is contained in:
thomas
2023-11-23 22:42:42 +04:00
parent 311d8128b2
commit 6cb5c5c415
88 changed files with 192 additions and 117 deletions

View File

@@ -1,5 +1,11 @@
---
interface Props {
link: string;
alt: string;
flag?: 'FR';
}
const { link, alt, flag } = Astro.props;
const isFR = flag === 'FR';
---