File tree Expand file tree Collapse file tree 2 files changed +9
-26
lines changed Expand file tree Collapse file tree 2 files changed +9
-26
lines changed Original file line number Diff line number Diff line change @@ -46,32 +46,6 @@ const config: Config = {
46
46
] ,
47
47
themeConfig : {
48
48
image : 'img/page-preview.png' ,
49
- metadata : [
50
- {
51
- name : 'og:title' ,
52
- content : 'Unity Tools for Azure DevOps'
53
- } ,
54
- {
55
- name : 'og:description' ,
56
- content : 'Free and open source. Save time and money by automating your Unity builds and deployments!'
57
- } ,
58
- {
59
- name : 'og:url' ,
60
- content : 'https://www.unitydevops.com/'
61
- } ,
62
- {
63
- name : 'og:site_name' ,
64
- content : 'Unity Tools for Azure DevOps'
65
- } ,
66
- {
67
- name : 'og:image' ,
68
- content : 'img/page-preview.png'
69
- } ,
70
- {
71
- name : 'og:type' ,
72
- content : 'website'
73
- }
74
- ] ,
75
49
navbar : {
76
50
title : 'Unity Tools for Azure DevOps' ,
77
51
logo : {
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import Layout from '@theme/Layout' ;
3
3
import HeroSection from './home/HeroSection' ;
4
+ import Head from '@docusaurus/Head' ;
4
5
5
6
export default function Home ( ) : JSX . Element {
6
7
return (
7
8
< Layout description = "Save time and money by automating your Unity builds and deployments!" >
8
9
< main >
10
+ < Head >
11
+ < meta property = 'og:url' content = 'https://www.unitydevops.com/' />
12
+ < meta property = 'og:site_name' content = 'Unity Tools for Azure DevOps' />
13
+ < meta property = 'og:title' content = 'Unity Tools for Azure DevOps' />
14
+ < meta property = 'og:description' content = 'Free and open source. Save time and money by automating your Unity builds and deployments!' />
15
+ < meta property = 'og:type' content = 'website' />
16
+ < meta property = 'og:image' content = 'img/page-preview.png' />
17
+ </ Head >
9
18
< HeroSection />
10
19
</ main >
11
20
</ Layout >
You can’t perform that action at this time.
0 commit comments