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 ( {props.title} ); }