[READ-ONLY] 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
nextjs
0

Configure Feed

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

fix: restore auth components

+26 -12
+9 -5
components/auth/login-form.tsx
··· 5 5 import { useState } from 'react' 6 6 7 7 import { Button } from '@/components/ui/button' 8 - 9 - 10 - import { Input } from '@/components/ui/input' 11 8 import { 12 - InputOTP, 13 - } from '@/components/ui/input-otp' 9 + Card, 10 + CardContent, 11 + CardDescription, 12 + CardHeader, 13 + CardTitle, 14 + } from '@/components/ui/card' 15 + import { Input } from '@/components/ui/input' 16 + import { InputOTP } from '@/components/ui/input-otp' 17 + import { Label } from '@/components/ui/label' 14 18 import { authClient } from '@/lib/auth/client' 15 19 import { cn } from '@/lib/utils' 16 20
+8 -2
components/auth/reset-form.tsx
··· 6 6 import type React from 'react' 7 7 8 8 import { Button } from '@/components/ui/button' 9 - 10 - 9 + import { 10 + Card, 11 + CardContent, 12 + CardDescription, 13 + CardHeader, 14 + CardTitle, 15 + } from '@/components/ui/card' 11 16 import { Input } from '@/components/ui/input' 17 + import { Label } from '@/components/ui/label' 12 18 import { authClient } from '@/lib/auth/client' 13 19 import { cn } from '@/lib/utils' 14 20
+9 -5
components/auth/sign-up-form.tsx
··· 5 5 import { useState } from 'react' 6 6 7 7 import { Button } from '@/components/ui/button' 8 - 9 - 10 - import { Input } from '@/components/ui/input' 11 8 import { 12 - InputOTP, 13 - } from '@/components/ui/input-otp' 9 + Card, 10 + CardContent, 11 + CardDescription, 12 + CardHeader, 13 + CardTitle, 14 + } from '@/components/ui/card' 15 + import { Input } from '@/components/ui/input' 16 + import { InputOTP } from '@/components/ui/input-otp' 17 + import { Label } from '@/components/ui/label' 14 18 import { authClient } from '@/lib/auth/client' 15 19 import { cn } from '@/lib/utils' 16 20