diff --git a/frontend/components/auth/auth-ui.tsx b/frontend/components/auth/auth-ui.tsx index d55b6eb..8a986f7 100644 --- a/frontend/components/auth/auth-ui.tsx +++ b/frontend/components/auth/auth-ui.tsx @@ -1,82 +1,51 @@ -import { Check } from "lucide-react"; +"use client"; + +import { motion, type Variants } from "framer-motion"; import Image from "next/image"; import type { ReactNode } from "react"; import { cn } from "@/lib/utils"; -const FEATURES = [ - "Look up any patient just by asking", - "Rich record cards — vitals, labs, meds, history", - "Open-source, built around patient-owned data", -]; +const container: Variants = { + hidden: {}, + show: { transition: { staggerChildren: 0.09, delayChildren: 0.18 } }, +}; -// Left brand panel (desktop only): gradient glow, product pitch, feature list. -function BrandPanel() { +const item: Variants = { + hidden: { opacity: 0, y: 16 }, + show: { + opacity: 1, + y: 0, + transition: { type: "spring", stiffness: 150, damping: 18 }, + }, +}; + +// Slowly drifting colored blobs behind everything. +function Aurora() { return ( -
- The AI middleman between you and patient data — retrieve, review and - update charts from a simple chat, so you spend less time clicking. -
-{subtitle}
)} -