generated from muhtadeetaron/nextjs-template
feat(auth): add verification feature in settings
This commit is contained in:
@ -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"
|
||||
|
||||
Reference in New Issue
Block a user