import Head from 'next/head'; import React from 'react'; export type HeadMetaProps = { title?: string; description?: string; url?: string; img?: string; }; export const HeadComponent: React.FC = ({ title = 'MetaGame', description = 'Metagame is a Massive Online Coordination Game! Metagame is any approach to a game that transcends or operates outside of the prescribed rules of the game, uses external factors to affect the game, or goes beyond the supposed limits or environment set by the game.', url = 'https://my.metagame.wtf/', img = 'https://my.metagame.wtf/_next/image?url=%2Fassets%2Flogo.alt.png&w=1920&q=75', }) => ( MetaGame );