3f1e80051f
* feat: static site
* feat: mui support & basic theming
* feat: entgamers favicon
* feat: public images until dynamic content can be used
* feat: entgamers & gaming assets
* feat: eslint extra rules
* feat: mui theme modifications
* feat: fontawesome, gsap, bundle analyzer
* feat: common interfaces
* feat: basic layout
* chore: upadted dependencies
* chore: updated dependencies
* feat: updated link styles
* feat: layout now have better interfaces
* feat: basic seo component
* feat: static website
* feat: env variable rules in .gitignore
* feat: added lint to pre-commit
* docs: initial documentation
* ci: deploy using pm2
* ci: pm2 configuration file
* ci: github action deploy preview
* ci: github action deploy production
* ci: env variables now pass to pm2
* fix: pass environment to actions
* feat: post deploy as sudo
* fix: pass only required env to deploy
* revert: deploy as sudo
Refs: 624b225
* fix: server use isomorphic-fetch
* ci: use yarn instead npm
* fix: glass text contrast
* fix: production git ref
* docs: deploy env vars
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
import Head from 'next/head'
|
|
import { FC } from 'react'
|
|
|
|
export type SeoProps = {
|
|
title?: string
|
|
description?: string
|
|
image?: string
|
|
}
|
|
|
|
const SITE_NAME = process.env.SITE_NAME || 'EntGamers'
|
|
|
|
const Seo: FC<SeoProps> = ({ title, description, image }) => {
|
|
return (
|
|
<Head>
|
|
{!!title && (
|
|
<>
|
|
<title key="title">{`${title} - ${SITE_NAME}`}</title>
|
|
<meta key="og_title" property="og:title" content={title} />
|
|
<meta key="twitter_title" property="twitter:title" content={title} />
|
|
</>
|
|
)}
|
|
{!!description && (
|
|
<>
|
|
<meta key="description" name="description" content={description} />
|
|
<meta key="og_description" property="og:description" content={description} />
|
|
<meta key="twitter_description" property="twitter:description" content={description} />
|
|
</>
|
|
)}
|
|
{!!image && (
|
|
<>
|
|
<meta key="og_image" property="og:image" content={image} />
|
|
<meta key="twitter_image" property="twitter:image" content={image} />
|
|
</>
|
|
)}
|
|
</Head>
|
|
)
|
|
}
|
|
export default Seo
|