link-stack/apps/link/app/(main)/overview/[overview]/page.tsx

35 lines
698 B
TypeScript
Raw Normal View History

2023-06-26 10:07:12 +00:00
import { Metadata } from "next";
import { ZammadOverview } from "./_components/ZammadOverview";
2023-07-17 12:23:12 +00:00
const getSection = (overview: string) => {
return overview.charAt(0).toUpperCase() + overview.slice(1);
};
2023-06-26 10:07:12 +00:00
type MetadataProps = {
params: {
overview: string;
};
};
export async function generateMetadata({
params: { overview },
}: MetadataProps): Promise<Metadata> {
2023-07-17 12:23:12 +00:00
const section = getSection(overview);
2023-06-26 10:07:12 +00:00
return {
title: `CDR Link - ${section} Tickets`,
2023-06-26 10:07:12 +00:00
};
}
type PageProps = {
params: {
overview: string;
};
};
export default function Page({ params: { overview } }: PageProps) {
2023-07-17 12:23:12 +00:00
const section = getSection(overview);
return <ZammadOverview name={section} />;
2023-06-26 10:07:12 +00:00
}