"use client"; import Image from "next/image"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "../../shadcnui"; export function ErrorDetails({ title, message, code }: { title?: string; message: string; code: number }) { if (code === 403) return (
Logo {/*
{code}
*/}
Unauthorised
We are sorry, but you are not allowed to access this content.
); return (
Logo
{code}
{title}
{message}
); }