This repository has no description
0

Configure Feed

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

feat: author meta tag on collection page

+6
+6
src/webapp/app/(dashboard)/profile/[handle]/(withoutHeader)/collections/[rkey]/layout.tsx
··· 23 23 description: 24 24 collection.description ?? 25 25 `View ${collection.author.name}'s collection on Semble`, 26 + authors: [ 27 + { 28 + name: collection.author.name, 29 + url: `${process.env.APP_URL}/profile/${handle}`, 30 + }, 31 + ], 26 32 }; 27 33 } 28 34