an app to share curated trails sidetrail.app
atproto nextjs react rsc
50
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 11 lines 229 B view raw
1import type { MetadataRoute } from "next"; 2 3export default function robots(): MetadataRoute.Robots { 4 return { 5 rules: { 6 userAgent: "*", 7 allow: "/", 8 }, 9 sitemap: "https://sidetrail.app/sitemap.xml", 10 }; 11}