1import type { MetadataRoute } from "next"; 2 3export default async function robots(): Promise<MetadataRoute.Robots> { 4 return { 5 rules: { 6 userAgent: "*", 7 allow: "/", 8 }, 9 sitemap: "https://hallaine.com/sitemap.xml", 10 }; 11}