From e0dfb55c5457aec489fc084c4567e791b4c65eb1 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Wed, 26 Mar 2025 00:37:41 +0000 Subject: 3/25 까지의 대표님 작업사항 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/login/login-form-skeleton.tsx | 71 ++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 components/login/login-form-skeleton.tsx (limited to 'components/login/login-form-skeleton.tsx') diff --git a/components/login/login-form-skeleton.tsx b/components/login/login-form-skeleton.tsx new file mode 100644 index 00000000..c434c4b7 --- /dev/null +++ b/components/login/login-form-skeleton.tsx @@ -0,0 +1,71 @@ +import { Skeleton } from "@/components/ui/skeleton" +import { Button } from "@/components/ui/button" +import { Ship, Loader2, GlobeIcon, ChevronDownIcon } from "lucide-react" +import Link from "next/link" +import { cn } from "@/lib/utils" +import { buttonVariants } from "@/components/ui/button" + +export function LoginFormSkeleton() { + return ( +
+ {/* Left Content */} +
+ {/* Top bar with Logo + eVCP (left) and "Request Vendor Repository" (right) */} +
+
+ + eVCP +
+ + Request Vendor Repository + +
+ + {/* Content section that occupies remaining space, centered vertically */} +
+ {/* Form container */} +
+
+
+
+ +
+
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+
+ + {/* Right BG 이미지 영역 */} +
+
+
+ {/* Optional top-right content on the image side */} +
+
+
+ +
+
+
+
+ ) +} \ No newline at end of file -- cgit v1.2.3