import Head from "next/head"; type seoprops = { title?: string; noatsign?: boolean; // simply add "noatsign" as property to element description?: string; }; const ComponentSEO = ({ title, noatsign, description }: seoprops) => { const defaultDescription = "Witryna internetowa Gractwa."; return ( {title ? `${title}${noatsign ? "" : " @ gractwo.pl"}` : "gractwo.pl"} ); }; export default ComponentSEO;