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

@@ -4,7 +4,8 @@ import axios from 'axios';
import { Button } from '../components/ui/button';
import { Card } from '../components/ui/card';
import { CheckCircle, XCircle, Loader2 } from 'lucide-react';
import Navbar from '../components/Navbar';
import PublicNavbar from '../components/PublicNavbar';
import PublicFooter from '../components/PublicFooter';
const API_URL = process.env.REACT_APP_BACKEND_URL;
@@ -38,7 +39,7 @@ const VerifyEmail = () => {
return (
<div className="min-h-screen bg-white">
<Navbar />
<PublicNavbar />
<div className="max-w-2xl mx-auto px-6 py-20">
<Card className="p-12 bg-white rounded-2xl border border-[#ddd8eb] shadow-lg text-center">
@@ -98,6 +99,8 @@ const VerifyEmail = () => {
)}
</Card>
</div>
<PublicFooter />
</div>
);
};