import Head from "next/head"; const Meta = ({ title, description, }: { title: string; description?: string; }) => { return ( {/* TODO: Doesn't work because script get only executed on client side */} {title} - Pingvin Share ); }; export default Meta;