This repository has been archived on 2026-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web/components/SEO.tsx
2022-12-11 13:11:01 +01:00

23 lines
578 B
TypeScript

import Head from "next/head";
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.";
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 { SEO };