Feat : View User Configuration page is up

This commit is contained in:
2025-09-08 17:33:08 +05:30
parent 833453241c
commit e089e95ce8
6 changed files with 190 additions and 13 deletions

View File

@@ -8,6 +8,7 @@ import NextImage from "next/image";
import logo from '@/app/image/logo1.jpg';
import { IconEye, IconLogout, IconPhoneFilled, IconUsers, IconUserScreen } from "@tabler/icons-react";
import UserConfiguration from "./UserConfiguration";
import ViewUserConfiguration from "./ViewUserConfiguration";
export default function Login() {
const router = useRouter();
@@ -165,7 +166,7 @@ export default function Login() {
</Box>
<Box>
{view === 'userConf' && <UserConfiguration />}
{view === 'view' && <Text size="xl">Feature will be available soon ....</Text>}
{view === 'view' && <Text size="xl"><ViewUserConfiguration/></Text>}
{!view &&
<Text size="xl">Welcome To The Admin Portal</Text>
}