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

@@ -6,7 +6,8 @@ import { Input } from '../components/ui/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, Lock, AlertCircle } from 'lucide-react';
const ResetPassword = () => {
@@ -64,7 +65,7 @@ const ResetPassword = () => {
return (
<div className="min-h-screen bg-white">
<Navbar />
<PublicNavbar />
<div className="max-w-md mx-auto px-6 py-12">
<Card className="p-8 md:p-12 bg-white rounded-2xl border border-[#ddd8eb] shadow-lg">
@@ -140,6 +141,8 @@ const ResetPassword = () => {
</form>
</Card>
</div>
<PublicFooter />
</div>
);
};