"use server"; import React from "react"; import styles from "@/app/(Admin)/unauthorize/unauthorize.module.css"; import { EB_Garamond } from "next/font/google"; const ebGaramond = EB_Garamond({ variable: "--font-eb-garamond", weight: ["400", "500", "600", "700", "800"], subsets: ["latin"], }); const Unauthorize = async () => { return (

401

Unauthorized

You don`t have valid credential to access this page.

); }; export default Unauthorize;