diff --git a/components/SEO.tsx b/components/SEO.tsx
index efad1f4..f506096 100644
--- a/components/SEO.tsx
+++ b/components/SEO.tsx
@@ -4,9 +4,17 @@ type seoprops = {
title?: string;
noatsign?: boolean; // simply add "noatsign" as property to element
description?: string;
+ picture?: string;
+ dontindex?: boolean;
};
-const SEO = ({ title, noatsign, description }: seoprops) => {
+const SEO = ({
+ title,
+ noatsign,
+ description,
+ picture,
+ dontindex,
+}: seoprops) => {
const titleEnhanced = title
? `${title}${noatsign ? "" : " @ gractwo.pl"}`
: "Gractwo!";
@@ -25,15 +33,21 @@ const SEO = ({ title, noatsign, description }: seoprops) => {
-
+
-
-
+
+
);
};
diff --git a/pages/404.tsx b/pages/404.tsx
index a8698f3..262b933 100644
--- a/pages/404.tsx
+++ b/pages/404.tsx
@@ -10,7 +10,7 @@ const PageError404 = () => {
}, [router.asPath]);
return (
<>
-
{person.Desc}
-{el ||
}
Sprawdź pisownię:
diff --git a/pages/rankingi.tsx b/pages/rankingi.tsx
index 1b66419..b02ac9f 100644
--- a/pages/rankingi.tsx
+++ b/pages/rankingi.tsx
@@ -1,9 +1,10 @@
import { SEO } from "../components/SEO";
const PageRankingi = () => {
+ const SEOdesc = `Strona w trakcie budowy - rankingi wiadomości i danych wśród użytkowników gractwa!`;
return (
<>
-