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 = {
4646 ] ,
4747 themeConfig : {
4848 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- ] ,
7549 navbar : {
7650 title : 'Unity Tools for Azure DevOps' ,
7751 logo : {
Original file line number Diff line number Diff line change 11import React from 'react' ;
22import Layout from '@theme/Layout' ;
33import HeroSection from './home/HeroSection' ;
4+ import Head from '@docusaurus/Head' ;
45
56export default function Home ( ) : JSX . Element {
67 return (
78 < Layout description = "Save time and money by automating your Unity builds and deployments!" >
89 < 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 >
918 < HeroSection />
1019 </ main >
1120 </ Layout >
You can’t perform that action at this time.
0 commit comments