-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHead.js
More file actions
31 lines (29 loc) · 1.21 KB
/
Head.js
File metadata and controls
31 lines (29 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import React from "react";
import NextHead from "next/head";
import { HOME_META_IMAGE_URL } from "lib/constant";
const Head = ({ title, description }) => (
<NextHead>
<meta charSet="UTF-8" />
<title>{`The Counsellors Couch - Adam Labuschagne` || ""}</title>
<meta
name="description"
content={
`The Counsellor's Couch offers compassionate and professional mental health counseling services, providing a safe space for individuals to explore personal challenges, improve well-being, and achieve personal growth.` ||
""
}
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="keywords"
content="Online Session with Adam Labuschagne, Addiction Practitioner"
/>
<meta name="twitter:card" content="summary" />
<link rel="icon" type="image/png" href="/meta/favicon.ico" />
<link rel="apple-touch-icon" href="/meta/apple-touch-icon.png" />
<meta name="og:image" content={HOME_META_IMAGE_URL} />
<meta name="twitter:image" content={HOME_META_IMAGE_URL} />
<meta name="theme-color" content="#96C5C5" />
<meta name="og:url" content="https://www.thecounsellorscouch.com/" />
</NextHead>
);
export default Head;