66 lines
No EOL
1.5 KiB
TypeScript
66 lines
No EOL
1.5 KiB
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/ai',
|
|
lastModified: new Date(),
|
|
changeFrequency: 'weekly',
|
|
priority: 0.9,
|
|
},
|
|
{
|
|
url: 'https://aidxn.cc/ai/claude',
|
|
lastModified: new Date(),
|
|
changeFrequency: 'daily',
|
|
priority: 0.9,
|
|
},
|
|
{
|
|
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/device/cheetah',
|
|
lastModified: new Date(),
|
|
changeFrequency: 'weekly' /* yes, i really re-flash roms this often */,
|
|
priority: 0.8,
|
|
},
|
|
{
|
|
url: 'https://aidxn.cc/device/bonito',
|
|
lastModified: new Date(),
|
|
changeFrequency: 'weekly',
|
|
priority: 0.8,
|
|
},
|
|
{
|
|
url: 'https://aidxn.cc/device/komodo',
|
|
lastModified: new Date(),
|
|
changeFrequency: 'weekly',
|
|
priority: 0.8,
|
|
},
|
|
{
|
|
url: 'https://aidxn.cc/manifesto',
|
|
lastModified: new Date(),
|
|
changeFrequency: 'yearly',
|
|
priority: 0.7,
|
|
},
|
|
]
|
|
} |