mirror of
https://github.com/arthur-pbty/chrono.git
synced 2026-06-03 23:36:31 +02:00
27 lines
562 B
TypeScript
27 lines
562 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
const baseUrl = "https://chrono.arthurp.fr";
|
|
|
|
return [
|
|
{
|
|
url: baseUrl,
|
|
lastModified: new Date(),
|
|
changeFrequency: "monthly",
|
|
priority: 1.0,
|
|
},
|
|
{
|
|
url: `${baseUrl}/#chronometre`,
|
|
lastModified: new Date(),
|
|
changeFrequency: "monthly",
|
|
priority: 0.9,
|
|
},
|
|
{
|
|
url: `${baseUrl}/#minuteur`,
|
|
lastModified: new Date(),
|
|
changeFrequency: "monthly",
|
|
priority: 0.9,
|
|
},
|
|
];
|
|
}
|