mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 12:36:57 +00:00
23 lines
492 B
TypeScript
23 lines
492 B
TypeScript
import { MetadataRoute } from "next";
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
return [
|
|
{
|
|
url: "https://echecsfrance.com",
|
|
lastModified: new Date(),
|
|
},
|
|
{
|
|
url: "https://echecsfrance.com/tournois",
|
|
lastModified: new Date(),
|
|
},
|
|
{
|
|
url: "https://echecsfrance.com/qui-sommes-nous",
|
|
lastModified: new Date(),
|
|
},
|
|
{
|
|
url: "https://echecsfrance.com/contactez-nous",
|
|
lastModified: new Date(),
|
|
},
|
|
];
|
|
}
|