/ frontend / app / sitemap.js
sitemap.js
 1  export default function sitemap() {
 2    return [
 3      {
 4        url: 'https://welkedeelauto.nl',
 5        lastModified: new Date(),
 6        changeFrequency: 'monthly',
 7        priority: 1,
 8      },
 9      {
10        url: 'https://welkedeelauto.nl/about',
11        lastModified: new Date(),
12        changeFrequency: 'monthly',
13        priority: 0.8,
14      }
15    ]
16  }