44 lines
845 B
TypeScript
44 lines
845 B
TypeScript
import { BASE_URL } from "@/lib/constants";
|
|
import type { MetadataRoute } from "next";
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
return [
|
|
{
|
|
url: BASE_URL,
|
|
lastModified: new Date(),
|
|
changeFrequency: "yearly",
|
|
priority: 1,
|
|
},
|
|
{
|
|
url: `${BASE_URL}/about`,
|
|
lastModified: new Date(),
|
|
changeFrequency: "monthly",
|
|
priority: 0.8,
|
|
},
|
|
{
|
|
url: `${BASE_URL}/blog`,
|
|
lastModified: new Date(),
|
|
changeFrequency: "weekly",
|
|
priority: 0.5,
|
|
},
|
|
{
|
|
url: `${BASE_URL}/planning`,
|
|
lastModified: new Date(),
|
|
changeFrequency: "daily",
|
|
priority: 0.8,
|
|
},
|
|
{
|
|
url: `${BASE_URL}/gallery`,
|
|
lastModified: new Date(),
|
|
changeFrequency: "daily",
|
|
priority: 0.8,
|
|
},
|
|
{
|
|
url: `${BASE_URL}/contact`,
|
|
lastModified: new Date(),
|
|
changeFrequency: "yearly",
|
|
priority: 0.8,
|
|
},
|
|
];
|
|
}
|