You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
overseerr/src/components/Common/PageTitle/index.tsx

23 lines
488 B

import useSettings from '@app/hooks/useSettings';
import Head from 'next/head';
interface PageTitleProps {
title: string | (string | undefined)[];
}
const PageTitle = ({ title }: PageTitleProps) => {
const settings = useSettings();
const titleText = `${
Array.isArray(title) ? title.filter(Boolean).join(' - ') : title
} - ${settings.currentSettings.applicationTitle}`;
return (
<Head>
<title>{titleText}</title>
</Head>
);
};
export default PageTitle;