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