Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Fixing unfurl image in Slack #138

Closed
wants to merge 15 commits into from
16 changes: 11 additions & 5 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,19 @@ export default function App({ Component, pageProps }: AppProps) {
<Head>
<title>Ocelot Consulting</title>
<meta name='designed by' content='Fluid22' />
<link rel="shortcut icon" href={`${origin}/assets/ocelot.svg`} />
<link rel="shortcut icon" href={`${origin}/assets/favicon.ico`} />
<meta name="title" content="Ocelot Consulting" />
<meta name="description" content="Modern solutions for companies seeking to innovate" />
<meta property="og:type" content="website" />
<meta property="og:url" content={origin} />
<meta property="og:title" content="Ocelot Consulting" />
<meta property="og:description" content="Modern solutions for companies seeking to innovate" />
<meta name="twitter:description" content="Modern solutions for companies seeking to innovate" />
<meta property="og:image" content={`${origin}/assets/ocelot.svg`} />
<meta property="og:image:type" content="image/svg+xml" />
<meta name="twitter:image" content={`${origin}/assets/ocelot.svg`} />
<meta property="og:image" content={`${origin}/assets/index/services.jpg`} />
<meta property="twitter:card" content="summary" />
<meta property="twitter:url" content={origin} />
<meta property="twitter:title" content="Ocelot Consulting" />
<meta property="twitter:description" content="Modern solutions for companies seeking to innovate" />
<meta property="twitter:image" content={`${origin}/assets/index/services.jpg`} />
</Head>
<Script
src="https://www.googletagmanager.com/gtag/js?id=UA-84294052-1"
Expand Down
Loading