26 lines
658 B
TypeScript
26 lines
658 B
TypeScript
// app/sitemap.ts
|
|
|
|
import type { MetadataRoute } from "next";
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
return [
|
|
{
|
|
url: "https://elatoai.com",
|
|
lastModified: new Date(),
|
|
changeFrequency: "weekly",
|
|
priority: 1,
|
|
},
|
|
{
|
|
url: "https://elatoai.com/products",
|
|
lastModified: new Date(),
|
|
changeFrequency: "weekly",
|
|
priority: 0.9,
|
|
},
|
|
{
|
|
url: "https://elatoai.com/healthcare",
|
|
lastModified: new Date(),
|
|
changeFrequency: "monthly",
|
|
priority: 0.8,
|
|
},
|
|
];
|
|
}
|