36 lines
No EOL
802 B
TypeScript
36 lines
No EOL
802 B
TypeScript
import type { MetadataRoute } from 'next'
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
return [
|
|
{
|
|
url: 'https://aidxn.cc',
|
|
lastModified: new Date(),
|
|
changeFrequency: 'weekly',
|
|
priority: 1.0,
|
|
},
|
|
{
|
|
url: 'https://aidxn.cc/about',
|
|
lastModified: new Date(),
|
|
changeFrequency: 'weekly',
|
|
priority: 0.8,
|
|
},
|
|
{
|
|
url: 'https://aidxn.cc/contact',
|
|
lastModified: new Date(),
|
|
changeFrequency: 'monthly',
|
|
priority: 0.8,
|
|
},
|
|
{
|
|
url: 'https://aidxn.cc/domains',
|
|
lastModified: new Date(),
|
|
changeFrequency: 'monthly',
|
|
priority: 0.8,
|
|
},
|
|
{
|
|
url: 'https://aidxn.cc/manifesto',
|
|
lastModified: new Date(),
|
|
changeFrequency: 'yearly',
|
|
priority: 0.7,
|
|
},
|
|
]
|
|
} |