feat: add cookie page

This commit is contained in:
2025-06-18 14:23:40 +03:00
parent cb036353cf
commit 48739d4e64
10 changed files with 240 additions and 1 deletions

9
src/app/cookie/page.tsx Normal file
View File

@@ -0,0 +1,9 @@
import { Cookie } from '@views/cookie';
export default function CookiePage() {
return (
<main>
<Cookie />
</main>
);
}