55 lines
1.3 KiB
TypeScript
55 lines
1.3 KiB
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
return [
|
|
{
|
|
url: "https://sitemente.com",
|
|
lastModified: new Date(),
|
|
changeFrequency: "weekly",
|
|
priority: 1,
|
|
},
|
|
{
|
|
url: "https://sitemente.com/demos",
|
|
lastModified: new Date(),
|
|
changeFrequency: "weekly",
|
|
priority: 0.9,
|
|
},
|
|
{
|
|
url: "https://sitemente.com/demos?vertical=real-estate",
|
|
lastModified: new Date(),
|
|
changeFrequency: "weekly",
|
|
priority: 0.8,
|
|
},
|
|
{
|
|
url: "https://sitemente.com/demos?vertical=restaurant",
|
|
lastModified: new Date(),
|
|
changeFrequency: "weekly",
|
|
priority: 0.8,
|
|
},
|
|
{
|
|
url: "https://sitemente.com/demos?vertical=clinic",
|
|
lastModified: new Date(),
|
|
changeFrequency: "weekly",
|
|
priority: 0.8,
|
|
},
|
|
{
|
|
url: "https://sitemente.com/demos?vertical=home-services",
|
|
lastModified: new Date(),
|
|
changeFrequency: "weekly",
|
|
priority: 0.8,
|
|
},
|
|
{
|
|
url: "https://sitemente.com/mission-control",
|
|
lastModified: new Date(),
|
|
changeFrequency: "monthly",
|
|
priority: 0.3,
|
|
},
|
|
{
|
|
url: "https://sitemente.com/morning-brief",
|
|
lastModified: new Date(),
|
|
changeFrequency: "monthly",
|
|
priority: 0.3,
|
|
},
|
|
];
|
|
}
|