mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-22 21:21:03 +00:00
29 lines
987 B
TypeScript
29 lines
987 B
TypeScript
import { Helmet } from "react-helmet";
|
|
|
|
export interface HeaderProps {
|
|
title: string;
|
|
description: string;
|
|
}
|
|
|
|
const image =
|
|
"https://repository-images.githubusercontent.com/842883987/9e56f43b-4afd-464d-85b9-d7e555751a39";
|
|
|
|
export function Header(props: HeaderProps) {
|
|
return (
|
|
<Helmet>
|
|
<title>{props.title}</title>
|
|
<meta name="description" content={props.description} />
|
|
<meta property="og:site_name" content={props.title} />
|
|
<meta property="og:title" content={props.title} />
|
|
<meta property="og:description" content={props.description} />
|
|
<meta property="og:locale" content="en-us" />
|
|
<meta property="og:type" content="website" />
|
|
<meta name="og:image" content={image} />
|
|
<meta name="twitter:card" content="summary" />
|
|
<meta name="twitter:title" content={props.title} />
|
|
<meta name="twitter:description" content={props.description} />
|
|
<meta name="twitter:image" content={image} />
|
|
</Helmet>
|
|
);
|
|
}
|