27 lines
549 B
TypeScript
27 lines
549 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
const siteUrl = "https://opplenz.com";
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
return [
|
|
{
|
|
url: siteUrl,
|
|
lastModified: new Date(),
|
|
changeFrequency: "weekly",
|
|
priority: 1,
|
|
},
|
|
{
|
|
url: `${siteUrl}/contact-us`,
|
|
lastModified: new Date(),
|
|
changeFrequency: "monthly",
|
|
priority: 0.7,
|
|
},
|
|
{
|
|
url: `${siteUrl}/marketing`,
|
|
lastModified: new Date(),
|
|
changeFrequency: "monthly",
|
|
priority: 0.6,
|
|
},
|
|
];
|
|
}
|