30 lines
624 B
JavaScript
30 lines
624 B
JavaScript
// app/sitemap.js
|
|
export default function sitemap() {
|
|
const baseUrl = 'https://aramland.approagency.ir/';
|
|
|
|
return [
|
|
{
|
|
url: baseUrl,
|
|
lastModified: new Date(),
|
|
changeFrequency: 'monthly',
|
|
priority: 1,
|
|
},
|
|
{
|
|
url: `${baseUrl}/features`,
|
|
lastModified: new Date(),
|
|
changeFrequency: 'monthly',
|
|
priority: 0.9,
|
|
},
|
|
{
|
|
url: `${baseUrl}/download`,
|
|
lastModified: new Date(),
|
|
changeFrequency: 'weekly',
|
|
priority: 0.8,
|
|
},
|
|
];
|
|
}
|
|
|
|
// Add this export for static generation
|
|
export async function generateSitemaps() {
|
|
return [{ id: '0' }];
|
|
} |