Fix metadata image

This commit is contained in:
samaradel
2021-11-15 14:10:21 +02:00
parent 3b9b9c1adf
commit bed143a387
4 changed files with 2 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
id: home
metaTitle: Join the ThreeFold Movement
metaDesc: ThreeFold is giving the world a new Internet with a much-needed and better infrastructure.
metaImg: ./1.png
metaImg: ./home_meta_header.png
header_slogan: Ready to serve all of humanity
header_title: WELCOME TO THE
header_title2: THREEFOLD GRID

View File

Before

Width:  |  Height:  |  Size: 548 KiB

After

Width:  |  Height:  |  Size: 548 KiB

View File

@@ -44,9 +44,6 @@
<script>
export default {
props: ["id", "team", "people"],
mounted() {
console.log(this.people);
},
};
</script>
<style>

View File

@@ -433,7 +433,7 @@ export default {
getImg() {
let img = "";
if (process.isClient) {
img = `${window.location.origin}${this.$page.markdownPage.metaImg.src}`;
img = `${window.location.origin}${this.$page.markdownPage.metaImg}`;
}
return img;
},