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
@@ -28,7 +28,7 @@ export default function Document() {
</head>
<body>{/* content */}</body>
</html>
)
);
}
```
@@ -46,22 +46,25 @@ export default function Document() {
</head>
<body>{/* content */}</body>
</html>
)
);
}
```
**Note:** In Next.js, prefer the `next/script` component with `strategy` prop instead of raw script tags:
```tsx
import Script from 'next/script'
import Script from 'next/script';
export default function Page() {
return (
<>
<Script src="https://example.com/analytics.js" strategy="afterInteractive" />
<Script
src="https://example.com/analytics.js"
strategy="afterInteractive"
/>
<Script src="/scripts/utils.js" strategy="beforeInteractive" />
</>
)
);
}
```