21 lines
416 B
TypeScript
21 lines
416 B
TypeScript
import { MetadataRoute } from 'next';
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
const baseUrl = 'https://kozmosbeach.com';
|
|
|
|
return [
|
|
{
|
|
url: `${baseUrl}/tr`,
|
|
lastModified: new Date(),
|
|
changeFrequency: 'monthly',
|
|
priority: 1,
|
|
},
|
|
{
|
|
url: `${baseUrl}/en`,
|
|
lastModified: new Date(),
|
|
changeFrequency: 'monthly',
|
|
priority: 1,
|
|
},
|
|
];
|
|
}
|