import type { MetadataRoute } from "next";
import { STORE_URL } from "@/lib/store-info";

export default function robots(): MetadataRoute.Robots {
  return {
    rules: {
      userAgent: "*",
      allow: "/",
    },
    sitemap: `${STORE_URL}/sitemap.xml`,
    host: STORE_URL,
  };
}
