diff --git a/components/SEO.tsx b/components/SEO.tsx index 1306095..60ff3b6 100644 --- a/components/SEO.tsx +++ b/components/SEO.tsx @@ -1,4 +1,5 @@ import Head from "next/head"; +import logo from "../public/logo.svg"; type seoprops = { title?: string; @@ -8,13 +9,29 @@ type seoprops = { const SEO = ({ title, noatsign, description }: seoprops) => { const defaultDescription = "Witryna internetowa Gractwa."; + const titleEnhanced = title + ? `${title}${noatsign ? "" : " @ gractwo.pl"}` + : "gractwo.pl"; return ( - - {title ? `${title}${noatsign ? "" : " @ gractwo.pl"}` : "gractwo.pl"} - + {titleEnhanced} + + + + + + + + + + + + ); };