alternative tangled frontend (extremely wip)

feat: tangled follow lexicon

+9
+9
src/lib/types/lexicons/sh/tangled/graph/follow.ts
··· 1 + import { z } from "zod/v4"; 2 + 3 + export const shTangledGraphFollowSchema = z.object({ 4 + $type: z.literal("sh.tangled.graph.follow"), 5 + subject: z.string(), 6 + createdAt: z.iso.datetime({ offset: true }).optional(), 7 + }); 8 + 9 + export type ShTangledGraphFollow = z.infer<typeof shTangledGraphFollowSchema>;