mirror of
https://github.com/BradNut/weddingsite
synced 2025-09-08 17:40:36 +00:00
Adding meta tags on Layout.
This commit is contained in:
parent
278ccc2bba
commit
bdbcc1b85d
1 changed files with 23 additions and 1 deletions
|
|
@ -5,7 +5,29 @@ import PropTypes from 'prop-types';
|
||||||
const Layout = ({ children }) => (
|
const Layout = ({ children }) => (
|
||||||
<>
|
<>
|
||||||
<Head>
|
<Head>
|
||||||
<title>NN By the Sea</title>
|
<title>Wedding Website</title>
|
||||||
|
<link rel="icon" type="image/svg" href="/penguin.svg" />
|
||||||
|
<meta name="description" content="Wedding Website" />
|
||||||
|
<meta name="theme-color" content="#FCCFB9" />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
<meta property="og:title" content="Wedding Website" key="og:title" />
|
||||||
|
<meta
|
||||||
|
description="og:description"
|
||||||
|
content="Wedding Website"
|
||||||
|
key="ogdesc"
|
||||||
|
/>
|
||||||
|
<meta
|
||||||
|
property="og:site_name"
|
||||||
|
content="Wedding Website"
|
||||||
|
key="ogsitename"
|
||||||
|
/>
|
||||||
|
<meta property="og:image" content="/penguin.svg" />
|
||||||
|
<meta property="og:locale" content="en_US" />
|
||||||
|
<meta name="twitter:card" content="summary" />
|
||||||
|
{/* <meta name="twitter:url" content="https://" /> */}
|
||||||
|
<meta name="twitter:title" content="Wedding Website" />
|
||||||
|
<meta name="twitter:description" content="Wedding Website" />
|
||||||
|
<meta name="twitter:image" content="/b_shell_nut_favicon.png" />
|
||||||
</Head>
|
</Head>
|
||||||
<noscript>
|
<noscript>
|
||||||
<h1>Please enable JavaScript to view our site.</h1>
|
<h1>Please enable JavaScript to view our site.</h1>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue