верни английский и вышли мне проект для скачивания

This commit is contained in:
Vadym 2025-07-03 14:47:17 +00:00
parent c7db315018
commit fe2732b515
2 changed files with 13 additions and 8 deletions

4
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,4 @@
{
"IDX.aI.enableInlineCompletion": true,
"IDX.aI.enableCodebaseIndexing": true
}

View file

@ -1,3 +1,4 @@
import Link from 'next/link';
import { Button } from '@/components/ui/button';
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
@ -11,8 +12,8 @@ export default function LoginPage() {
<Card className="mx-auto w-full max-w-sm">
<CardHeader className="text-center">
<Logo className="mx-auto mb-4 h-8" />
<CardTitle className="text-2xl font-bold tracking-tight">Вход в Aimpress</CardTitle>
<CardDescription>Введите email и пароль для входа</CardDescription>
<CardTitle className="text-2xl font-bold tracking-tight">Login to Aimpress</CardTitle>
<CardDescription>Enter your email and password to log in</CardDescription>
</CardHeader>
<CardContent>
<div className="grid gap-4">
@ -22,15 +23,15 @@ export default function LoginPage() {
</div>
<div className="grid gap-2">
<div className="flex items-center">
<Label htmlFor="password">Пароль</Label>
<Label htmlFor="password">Password</Label>
<Link href="#" className="ml-auto inline-block text-sm underline" prefetch={false}>
Забыли пароль?
Forgot your password?
</Link>
</div>
<Input id="password" type="password" required />
</div>
<Button type="submit" className="w-full" asChild>
<Link href="/dashboard">Войти</Link>
<Link href="/dashboard">Login</Link>
</Button>
<div className="relative my-1">
<div className="absolute inset-0 flex items-center">
@ -38,7 +39,7 @@ export default function LoginPage() {
</div>
<div className="relative flex justify-center text-xs uppercase">
<span className="bg-background px-2 text-muted-foreground">
Или войдите через
Or continue with
</span>
</div>
</div>
@ -58,9 +59,9 @@ export default function LoginPage() {
</div>
</div>
<div className="mt-4 text-center text-sm">
Нет аккаунта?{' '}
Don't have an account?{" "}
<Link href="#" className="underline" prefetch={false}>
Зарегистрироваться
Sign up
</Link>
</div>
</CardContent>