feat(auth): add verification feature in settings

This commit is contained in:
shafin-r
2025-09-09 00:54:06 +06:00
parent 4042e28bf7
commit c3ead879ad
7 changed files with 205 additions and 1 deletions

View File

@ -4,6 +4,7 @@ import BackgroundWrapper from "@/components/BackgroundWrapper";
import { Avatar, AvatarFallback } from "@/components/ui/avatar";
import { useAuthStore } from "@/stores/authStore";
import {
BadgeCheck,
Bookmark,
ChartColumn,
ChevronRight,
@ -59,6 +60,19 @@ const SettingsPage = () => {
</div>
</section>
<section className="flex flex-col gap-8">
<button
onClick={() => router.push("/settings/verify")}
className="flex justify-between"
>
<div className="flex items-center gap-4">
<BadgeCheck size={30} color="#113768" />
<h3 className="text-md font-medium text-[#113768]">
Verify your account
</h3>
</div>
<ChevronRight size={30} color="#113768" />
</button>
<div className="h-[0.5px] border-[0.1px] w-full border-[#113768]/20"></div>
<button
onClick={() => router.push("/profile")}
className="flex justify-between"