feat: add admin panel with comprehensive management features
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
import { InviteUserForm } from "@/components/admin/invite-user-form"
|
||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
|
||||
|
||||
export const metadata = {
|
||||
title: "Felhasználó meghívása - Admin - FABRIKA NABYTOK",
|
||||
}
|
||||
|
||||
export default function InviteUserPage() {
|
||||
return (
|
||||
<div className="max-w-2xl mx-auto space-y-6">
|
||||
<div>
|
||||
<h1 className="text-3xl font-bold">Felhasználó meghívása</h1>
|
||||
<p className="text-muted-foreground mt-2">Új felhasználó meghívása a platformra</p>
|
||||
</div>
|
||||
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Meghívó részletei</CardTitle>
|
||||
<CardDescription>
|
||||
Add meg az új felhasználó email címét és szerepkörét. A felhasználó egy meghívó linket fog kapni.
|
||||
</CardDescription>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<InviteUserForm />
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user