Fixing and Sitemap and Robots.txt

This commit is contained in:
2023-12-10 17:14:10 +01:00
parent 3d95bffb6a
commit 6c9c496f05
33 changed files with 150 additions and 57 deletions

11
src/components/P.astro Normal file
View File

@@ -0,0 +1,11 @@
---
interface Props {
class: string;
}
const { class: s } = Astro.props as Props;
---
<p class={s}>
<slot></slot>
</p>