Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected meta tag properties in the main Vue component changing "poperty" to "property". #205

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 10 additions & 12 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
<template>
<div
id="app"
class="is-flex"
>
<div id="app" class="is-flex">
<TheFeaturedCallout />

<TheNavBar v-if="$route.name !== 'home'" />
Expand All @@ -17,6 +14,7 @@
import TheFeaturedCallout from "@/components/TheFeaturedCallout.vue";
import TheNavBar from "@/components/TheNavBar.vue";
import TheFooter from "@/components/TheFooter.vue";

export default {
metaInfo: {
title: "Repo Remover | Cleanup your GitHub repos with ease.",
Expand All @@ -27,24 +25,23 @@ export default {
},
{
name: "description",
content:
"Repo Remover makes it easy to archive and delete multiple GitHub repos at the same time. Free to use, and 100% open source."
content: "Repo Remover makes it easy to archive and delete multiple GitHub repos at the same time. Free to use, and 100% open source."
},
{
poperty: "og:image",
property: "og:image",
content: "https://reporemover.xyz/repo-remover-landing.png"
},
{
poperty: "og:url",
property: "og:url",
content: "https://reporemover.xyz"
},
{
poperty: "og:site_name",
content: "Repo Remove"
property: "og:site_name",
content: "Repo Remover"
},
{
poperty: "og:type",
content: "Website"
property: "og:type",
content: "website"
}
]
},
Expand All @@ -67,3 +64,4 @@ html {
flex-direction: column;
}
</style>