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, ArrowLeft, Mail, CheckCircle } from 'lucide-react';
const ForgotPassword = () => {
@@ -32,7 +33,7 @@ const ForgotPassword = () => {
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">
@@ -114,6 +115,8 @@ const ForgotPassword = () => {
)}
</Card>
</div>
<PublicFooter />
</div>
);
};