One Calendar is a privacy-first calendar web app built with Next.js. It has modern security features, including e2ee, password-protected sharing, and self-destructing share links ๐Ÿ“… calendar.xyehr.cn
5
fork

Configure Feed

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

remove atproto share page

authored by

Evan Huang and committed by
GitHub
885d2d9b 26a4cb6f

-9
-9
app/(app)/[handle]/[shareId]/page.tsx
··· 1 - "use client"; 2 - 3 - import SharedEventView from "@/components/app/profile/shared-event"; 4 - import { useParams } from "next/navigation"; 5 - 6 - export default function AtprotoSharePage() { 7 - const params = useParams(); 8 - return <SharedEventView handle={params.handle as string} shareId={params.shareId as string} />; 9 - }