feat: create sitemap.xml programmatically

This commit is contained in:
Bart van der Braak 2024-01-16 02:44:46 +01:00
parent 70a0eb8aa1
commit 7d70f2d2ed
2 changed files with 68 additions and 1 deletions

View file

@ -2,7 +2,7 @@ import type { Icons } from '$lib/components/site/icons';
export type NavItem = {
title: string;
href?: string;
href: string;
disabled?: boolean;
external?: boolean;
icon?: keyof typeof Icons;