a tool for shared writing and social publishing

add rss alternate to head

+7
+7
app/lish/[did]/[publication]/page.tsx
··· 39 39 return { 40 40 title: record?.name || "Untitled Publication", 41 41 description: record?.description || "", 42 + alternates: record?.base_path 43 + ? { 44 + types: { 45 + "application/rss+xml": `https://${record?.base_path}/rss`, 46 + }, 47 + } 48 + : undefined, 42 49 }; 43 50 } 44 51