import Head from "next/head"; type seoprops = { title?: string; noatsign?: boolean; // simply add "noatsign" as property to element description?: string; }; const SEO = ({ title, noatsign, description }: seoprops) => { const titleEnhanced = title ? `${title}${noatsign ? "" : " @ gractwo.pl"}` : "Gractwo!"; const defaultDescription = `Gractwo jest nieformalną organizacją i społecznością osób zainteresowanych grami, anime, popkulturą. Powstałe w 2020 roku jest zrzeszeniem ludzi w dużej mierze znających się nawzajem i spędzających razem „na Gractwie” czas.`; const remoteLogoRender = "https://raw.githubusercontent.com/gractwo/assets/master/raster/logo-x192.png"; return (