an app to share curated trails sidetrail.app
1

Configure Feed

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

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}