import type { MetadataRoute } from "next";

export default function sitemap(): MetadataRoute.Sitemap {
  return [
    {
      url: "https://alexogoth.com",
      lastModified: new Date(),
    },
    {
      url: "https://alexogoth.com/privacy",
      lastModified: new Date(),
    },
    {
      url: "https://alexogoth.com/terms",
      lastModified: new Date(),
    },
    {
      url: "https://alexogoth.com/refund",
      lastModified: new Date(),
    },
  ];
}