From 2eaea7a0bc84feb894f37a84110595dff76a8202 Mon Sep 17 00:00:00 2001 From: l3wdfut4pwr l3wdfut4pwr Date: Thu, 29 Jan 2026 22:42:52 +0200 Subject: add login dialog --- src/components/header/AuthDialog.tsx | 105 ++++++++++++++++++++++------------- 1 file changed, 65 insertions(+), 40 deletions(-) diff --git a/src/components/header/AuthDialog.tsx b/src/components/header/AuthDialog.tsx index d07d952..c1f359e 100644 --- a/src/components/header/AuthDialog.tsx +++ b/src/components/header/AuthDialog.tsx @@ -1,47 +1,72 @@ import { Button } from '@/components/ui/button'; -import { - Dialog, - DialogClose, - DialogContent, - DialogDescription, - DialogFooter, - DialogHeader, - DialogTitle, - DialogTrigger, -} from '@/components/ui/dialog'; +import { DialogContent } from '@/components/ui/dialog'; import { Input } from '@/components/ui/input'; -import { Label } from '@/components/ui/label'; -import { - Card, - CardContent, - CardDescription, - CardHeader, - CardTitle, -} from '@/components/ui/card'; import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs'; - +import GoogleIcon from '../../../public/icons/google.svg'; export function AuthDialog() { return ( - - - - {' '} - - {' '} - Вход{' '} - {' '} - - {' '} - Регистрация - - - Восстановление - - - - - - - +
+ + +
+ + + Вход + + + Регистрация + + + + Восстановление + + + + +
+ +
+
+ +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
); } -- cgit v1.3-3-g829e