Skip to content

Commit 1f0835c

Browse files
feat: add sitemap functionality
1 parent ade4310 commit 1f0835c

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

app/sitemap.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import type { MetadataRoute } from "next";
2+
3+
export default function sitemap(): MetadataRoute.Sitemap {
4+
return [
5+
{
6+
url: "https://life.aleixvidal.dev",
7+
lastModified: new Date(),
8+
changeFrequency: "monthly",
9+
priority: 1,
10+
},
11+
];
12+
}

0 commit comments

Comments
 (0)