add login card and shadcn components

This commit is contained in:
IluaAir
2025-10-04 23:54:19 +03:00
parent e41b8922e5
commit 33bd88629f
8 changed files with 353 additions and 10 deletions

View File

@@ -1,16 +1,11 @@
import './App.css'
import { useState } from "react"
import ExitAnimation from "./components/buttons"
import { LoginPage } from './pages/Login'
function App() {
const [show, setShow] = useState(true)
return (
<>
<div className="App">
<h1>My App</h1>
<ExitAnimation />
</div>
<LoginPage className="flex min-h-svh flex-col items-center justify-center bg-background text-foreground" />
</>
)
}