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.

restore

+2 -9
+1 -8
app/globals.css
··· 2 2 @tailwind components; 3 3 @tailwind utilities; 4 4 5 - @font-face { 6 - font-family: "San Francisco"; 7 - src: url("/sf.otf") format("opentype"); 8 - font-weight: normal; 9 - font-style: normal; 10 - } 11 - 12 5 html { 13 6 scroll-behavior: smooth; 14 7 } 15 8 16 9 body { 17 - font-family: Arial, Helvetica, "San Francisco", sans-serif; 10 + font-family: Arial, Helvetica, sans-serif; 18 11 } 19 12 20 13 @layer utilities {
+1 -1
app/layout.tsx
··· 47 47 }) { 48 48 return ( 49 49 <html lang="en" suppressHydrationWarning> 50 - <body className="font-sf"> 50 + <body className={GeistSans.className}> 51 51 <ClerkProvider 52 52 localization={enUS} 53 53 fallbackRedirectUrl="/"