2023-06-26 10:07:12 +00:00
|
|
|
import { Metadata } from "next";
|
2023-07-18 08:16:16 +00:00
|
|
|
import { ZammadWrapper } from "../../(main)/_components/ZammadWrapper";
|
2023-06-26 10:07:12 +00:00
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Profile",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function Page() {
|
|
|
|
|
return <ZammadWrapper path="/#profile" hideSidebar={false} />;
|
|
|
|
|
}
|