fix: revert login page changes

This commit is contained in:
NotII
2025-03-24 16:34:24 +00:00
parent 8269bcb1cb
commit 2eba96821e

View File

@@ -1,9 +1,6 @@
"use client" "use client"
import React, { Suspense, lazy } from "react"; import React, { Suspense, lazy } from "react";
import { _Button } from "@/components/ui/button";
import { _Input } from "@/components/ui/input";
import { _Label } from "@/components/ui/label";
// Use lazy loading for the form component // Use lazy loading for the form component
const LoginForm = lazy(() => import('./components/LoginForm')); const LoginForm = lazy(() => import('./components/LoginForm'));