day one
This commit is contained in:
22
components/SEO.tsx
Normal file
22
components/SEO.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
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 (
|
||||
<Head>
|
||||
<title>
|
||||
{title ? `${title}${noatsign ? "" : " @ gractwo.pl"}` : "gractwo.pl"}
|
||||
</title>
|
||||
<link rel="shortcut icon" href="/logo.svg" type="image/x-icon" />
|
||||
<meta name="description" content={description || defaultDescription} />
|
||||
</Head>
|
||||
);
|
||||
};
|
||||
|
||||
export default ComponentSEO;
|
||||
Reference in New Issue
Block a user