diff --git a/public/esculapio.jpg b/public/esculapio.jpg new file mode 100644 index 0000000..dce717f Binary files /dev/null and b/public/esculapio.jpg differ diff --git a/src/assets/images/esculapio_face_1786819787723.jpg b/src/assets/images/esculapio_face_1786819787723.jpg new file mode 100644 index 0000000..dce717f Binary files /dev/null and b/src/assets/images/esculapio_face_1786819787723.jpg differ diff --git a/src/components/icons/EsculapioIcon.tsx b/src/components/icons/EsculapioIcon.tsx new file mode 100644 index 0000000..1c6a5e9 --- /dev/null +++ b/src/components/icons/EsculapioIcon.tsx @@ -0,0 +1,61 @@ +import React from 'react'; + +export function EsculapioIcon({ className = "w-20 h-20 text-neutral-900 dark:text-neutral-100", size = 80 }: { className?: string; size?: number }) { + return ( + + ); +} diff --git a/src/sections/Login.tsx b/src/sections/Login.tsx index 4266e73..be6ddee 100644 --- a/src/sections/Login.tsx +++ b/src/sections/Login.tsx @@ -4,7 +4,8 @@ import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/com import { Button } from '@/components/ui/button'; import { Input } from '@/components/ui/input'; import { Label } from '@/components/ui/label'; -import { Shield, Lock, User } from 'lucide-react'; +import { Lock, User } from 'lucide-react'; +import { EsculapioIcon } from '@/components/icons/EsculapioIcon'; export function Login() { const { login } = useHospitalStore(); @@ -30,12 +31,14 @@ export function Login() { return (