diff --git a/app/(pages)/admin/add-admin/page.tsx b/app/(pages)/admin/add-admin/page.tsx new file mode 100644 index 00000000..448dfb7b --- /dev/null +++ b/app/(pages)/admin/add-admin/page.tsx @@ -0,0 +1,207 @@ +"use client"; + +import React from "react"; +import { Input, Button, Card, CardBody, CardHeader } from "@nextui-org/react"; +import { motion } from "framer-motion"; + +export default function AddAdmin() { + const handleSubmit = (e: any) => { + e.preventDefault(); + console.log("Form submitted"); + }; + + return ( +
+ {/* Subtle animated background shapes */} + + + + + +

+ Create New Admin +

+
+ + {/* Left side - Form */} +
+
+
+ + + + + } + /> +
+
+ + + + + } + /> +
+
+ + + + + } + /> +
+
+ + + + + } + /> +
+ +
+
+ + {/* Right side - Decorative content */} +
+ + + + + +

+ Welcome to the Admin Team +

+

+ Join us in managing and improving our platform. +

+
+
+
+
+ ); +} diff --git a/app/(pages)/admin/billing/page.tsx b/app/(pages)/admin/billing/page.tsx new file mode 100644 index 00000000..876e6b70 --- /dev/null +++ b/app/(pages)/admin/billing/page.tsx @@ -0,0 +1,5 @@ +import React from "react"; + +export default function Billing() { + return
Overview of financial transactions
; +} diff --git a/app/(pages)/admin/hospitals/page.tsx b/app/(pages)/admin/hospitals/page.tsx new file mode 100644 index 00000000..5dc5b9b4 --- /dev/null +++ b/app/(pages)/admin/hospitals/page.tsx @@ -0,0 +1,8 @@ +export default function Hospitals() { + return ( +
+ Add/edit hospital information Manage departments and services Set + hospital-wide policies and procedures +
+ ); +} diff --git a/app/(pages)/admin/reports/page.tsx b/app/(pages)/admin/reports/page.tsx new file mode 100644 index 00000000..23662a4c --- /dev/null +++ b/app/(pages)/admin/reports/page.tsx @@ -0,0 +1,8 @@ +export default function Reports() { + return ( +
+ Extract Reports for specific hospital which will shows its total usre s, + doctors , receps, etc +
+ ); +} diff --git a/app/(pages)/admin/users/page.tsx b/app/(pages)/admin/users/page.tsx new file mode 100644 index 00000000..f7d2a964 --- /dev/null +++ b/app/(pages)/admin/users/page.tsx @@ -0,0 +1,10 @@ +export default function Users() { + return ( +
+ Patient , Admin , Rcep onlY Search and view user profiles , List all users + (patients, doctors, receptionists, etc.) Create, edit, and deactivate user + accounts Manage user roles and permissions Bulk user operations (e.g., + import/export) +
+ ); +}