11 lines
275 B
TypeScript
11 lines
275 B
TypeScript
|
|
import { Metadata } from "next";
|
||
|
|
import { ZammadWrapper } from "../../(main)/_components/ZammadWrapper";
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: "Knowledge Base",
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function Page() {
|
||
|
|
return <ZammadWrapper path="/#knowledge_base/1/locale/en-us" />;
|
||
|
|
}
|