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.

wip

+5
+5
app/at/(trail)/[handle]/trail/[rkey]/page.tsx
··· 2 2 import { loadTrailDetail, loadCurrentUser } from "@/data/queries"; 3 3 import { TrailView } from "./TrailView"; 4 4 5 + // Work around "Could not find the module "..." in the React Client Manifest." 6 + // They're used by embeds but seems like these are being incorrectly treeshaken somewhere. 7 + export { BlueskyPostEmbed } from "./embeds/BlueskyPostEmbed"; 8 + export { LinkPreview } from "./LinkPreview"; 9 + 5 10 type Props = { 6 11 params: Promise<{ 7 12 handle: string;