mirror of
https://github.com/hansputera/tiktok-dl.git
synced 2026-04-06 04:01:57 +02:00
37 lines
1.0 KiB
TypeScript
37 lines
1.0 KiB
TypeScript
/**
|
|
* Next Head Component.
|
|
* @param {{title: string, children: JSX.Element }} param0 NextHeadComponent args.
|
|
* @return {JSX.Element}
|
|
*/
|
|
export const NextHeadComponent = ({
|
|
title,
|
|
children,
|
|
}: {
|
|
title?: string;
|
|
children?: JSX.Element;
|
|
}): JSX.Element => {
|
|
return (
|
|
<>
|
|
<title>{title ?? 'TikTok Downloader'}</title>
|
|
<meta
|
|
name="title"
|
|
content="TikTok Downloader | Non&Watermark Support"
|
|
/>
|
|
<meta
|
|
name="description"
|
|
content="An Open-Source Project where it could download TikTok's Video without annoying ads!"
|
|
/>
|
|
<meta
|
|
name="keywords"
|
|
content="tiktok-downloader, tiktokdl, tiktok, download video tiktok, tiktok no watermark"
|
|
/>
|
|
<meta
|
|
name="author"
|
|
content="Hanif Dwy Putra S <github.com/hansputera>"
|
|
/>
|
|
<meta name="robots" content="index, follow" />
|
|
{children}
|
|
</>
|
|
);
|
|
};
|