Code Templates

These are some snippets I use alot, I like to have them all in one spot so I can come back to use them anytime!

This is how I like to build my sitemaps. This allows for sitemaps to stay updated based on the given data!

1import { MetadataRoute } from "next";
2import { blog } from "@/lib/data";
3
4export default function sitemap(): MetadataRoute.Sitemap {
5  const staticPages = [
6    {
7      url: "https://domain.com",
8      lastModified: new Date().toISOString(),
9      priority: 1,
10      changefreq: "monthly",
11    },
12  ];
13
14  const blogPages = blog.map((merch, idx) => {
15    return {
16      url: `https://domain.com/blog/${merch.id}`,
17      lastModified: new Date().toISOString(),
18      priority: 0.8,
19      changefreq: "monthly",
20    };
21  });
22
23  return [...staticPages, ...blogPages];
24}