Update New Features

This commit is contained in:
Koncept Kit
2025-12-10 17:52:47 +07:00
parent 1f27c3224b
commit 36017e8693
39 changed files with 4977 additions and 196 deletions

View File

@@ -7,7 +7,8 @@ import { PasswordInput } from '../components/ui/password-input';
import { Label } from '../components/ui/label';
import { Card } from '../components/ui/card';
import { toast } from 'sonner';
import Navbar from '../components/Navbar';
import PublicNavbar from '../components/PublicNavbar';
import PublicFooter from '../components/PublicFooter';
import { ArrowRight, ArrowLeft } from 'lucide-react';
const Login = () => {
@@ -55,7 +56,7 @@ const Login = () => {
return (
<div className="min-h-screen bg-white">
<Navbar />
<PublicNavbar />
<div className="max-w-md mx-auto px-6 py-12">
<div className="mb-8">
@@ -129,6 +130,8 @@ const Login = () => {
</form>
</Card>
</div>
<PublicFooter />
</div>
);
};