mirror of
https://github.com/arthur-pbty/portfolio.git
synced 2026-08-01 20:29:43 +02:00
19 lines
412 B
TypeScript
19 lines
412 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
return [
|
|
{
|
|
url: "https://portfolio.arthurp.fr",
|
|
lastModified: new Date(),
|
|
changeFrequency: "monthly",
|
|
priority: 1,
|
|
},
|
|
{
|
|
url: "https://portfolio.arthurp.fr/photos",
|
|
lastModified: new Date(),
|
|
changeFrequency: "monthly",
|
|
priority: 0.8,
|
|
},
|
|
];
|
|
}
|