diff --git a/src/app/(auth)/layout.tsx b/src/app/(auth)/layout.tsx index 1bc671c..56f3891 100644 --- a/src/app/(auth)/layout.tsx +++ b/src/app/(auth)/layout.tsx @@ -1,8 +1,8 @@ import type { Metadata } from "next"; export const metadata: Metadata = { - title: "İşletmem — Giriş", - description: "İşletmem KovakCRM hesabınıza giriş yapın veya yeni hesap oluşturun.", + title: "Emlak CRM — Giriş", + description: "Emlak CRM hesabınıza giriş yapın.", }; export default function AuthLayout({ children }: { children: React.ReactNode }) { diff --git a/src/app/(auth)/sign-in/components/login-form-1.tsx b/src/app/(auth)/sign-in/components/login-form-1.tsx index 43634ae..dbb0623 100644 --- a/src/app/(auth)/sign-in/components/login-form-1.tsx +++ b/src/app/(auth)/sign-in/components/login-form-1.tsx @@ -2,13 +2,11 @@ import Link from "next/link"; import { useActionState } from "react"; -import { Loader2 } from "lucide-react"; +import { Loader2, Building2, Users, Presentation, Zap } from "lucide-react"; import { Button } from "@/components/ui/button"; -import { Card, CardContent } from "@/components/ui/card"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; -import { Logo } from "@/components/logo"; import { cn } from "@/lib/utils"; import { signInAction } from "@/lib/appwrite/auth-actions"; import { initialAuthState } from "@/lib/appwrite/auth-types"; @@ -21,148 +19,183 @@ export function LoginForm1({ const [state, formAction, isPending] = useActionState(signInAction, initialAuthState); return ( -