Update src/pages/index.astro (#1)
All checks were successful
Build, check & Test / run (push) Successful in 1m41s

Reviewed-on: #1
This commit is contained in:
Florian Bouillon 2023-11-25 22:50:55 +00:00
parent dc58e29760
commit 3fc900a1e6
2 changed files with 62 additions and 62 deletions

View File

@ -29,7 +29,7 @@ const clients = await Promise.all((await getCollection('clients')).map(async (it
<div class="grid grid-cols-2 items-center">
<div></div>
<div class="prose dark:prose-invert max-w-none">
<p class="font-semibold">Tâches :</p>
<p class="font-semibold">Tâches :O :</p>
</div>
</div>
{clients.map((client, index) => {

View File

@ -13,11 +13,11 @@ export const ALL: APIRoute = async () => {
sitemap.addEntry('/', {
priority: 1
})
sitemap.addEntry('/projets/', {
sitemap.addEntry('/projects/', {
priority: 0.5
})
for (const project of projects) {
sitemap.addEntry('/projets/' + project.slug, {
sitemap.addEntry('/projects/' + project.slug, {
priority: 0.7
})
}