feat: auth & admin

This commit is contained in:
2026-06-03 10:41:53 +03:00
parent 612d0f0125
commit 7dc59fb3c4
120 changed files with 4683 additions and 2159 deletions
@@ -22,11 +22,11 @@ RSC→client serialization deduplicates by object reference, not value. Same ref
```tsx
// RSC: send once
<ClientList usernames={usernames} />
<ClientList usernames={usernames} />;
// Client: transform there
'use client'
const sorted = useMemo(() => [...usernames].sort(), [usernames])
('use client');
const sorted = useMemo(() => [...usernames].sort(), [usernames]);
```
**Nested deduplication behavior:**