29 lines
559 B
TypeScript
29 lines
559 B
TypeScript
import type { MetadataRoute } from 'next'
|
|
|
|
const BASE_URL = 'https://innungsapp.com'
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
const lastModified = new Date()
|
|
|
|
return [
|
|
{
|
|
url: `${BASE_URL}/`,
|
|
lastModified,
|
|
changeFrequency: 'weekly',
|
|
priority: 1,
|
|
},
|
|
{
|
|
url: `${BASE_URL}/impressum`,
|
|
lastModified,
|
|
changeFrequency: 'monthly',
|
|
priority: 0.3,
|
|
},
|
|
{
|
|
url: `${BASE_URL}/datenschutz`,
|
|
lastModified,
|
|
changeFrequency: 'monthly',
|
|
priority: 0.3,
|
|
},
|
|
]
|
|
}
|