Browse Source

fixed metatag image url

master
Spencer Flagg 3 years ago
parent
commit
980137952d
2 changed files with 33 additions and 3 deletions
  1. +3
    -3
      nuxt.config.js
  2. +30
    -0
      pages/flights.vue

+ 3
- 3
nuxt.config.js View File

@ -9,16 +9,16 @@ export default {
{ name: 'format-detection', content: 'telephone=no' }, { name: 'format-detection', content: 'telephone=no' },
{ itemprop: 'name', content: 'Small Planes, Big Experiences' }, { itemprop: 'name', content: 'Small Planes, Big Experiences' },
{ itemprop: 'description', content: 'FlyLocal is the best way to find local airlines that fly throughout the great state of Alaska. Explore the \'Last Frontier\' with FlyLocal.' }, { itemprop: 'description', content: 'FlyLocal is the best way to find local airlines that fly throughout the great state of Alaska. Explore the \'Last Frontier\' with FlyLocal.' },
{ itemprop: 'image', content: '/screenshot.png' },
{ itemprop: 'image', content: 'https://flylocal.us/screenshot.png' },
{ property: 'og:url', content: 'https://iflylocal.com/' }, { property: 'og:url', content: 'https://iflylocal.com/' },
{ property: 'og:type', content: 'website' }, { property: 'og:type', content: 'website' },
{ property: 'og:title', content: 'Small Planes, Big Experiences' }, { property: 'og:title', content: 'Small Planes, Big Experiences' },
{ property: 'og:description', content: 'FlyLocal is the best way to find local airlines that fly throughout the great state of Alaska. Explore the \'Last Frontier\' with FlyLocal.' }, { property: 'og:description', content: 'FlyLocal is the best way to find local airlines that fly throughout the great state of Alaska. Explore the \'Last Frontier\' with FlyLocal.' },
{ property: 'og:image', content: '/screenshot.png' },
{ property: 'og:image', content: 'https://flylocal.us/screenshot.png' },
{ name: 'twitter:card', content: 'summary_large_image' }, { name: 'twitter:card', content: 'summary_large_image' },
{ name: 'twitter:title', content: 'Small Planes, Big Experiences' }, { name: 'twitter:title', content: 'Small Planes, Big Experiences' },
{ name: 'twitter:description', content: 'FlyLocal is the best way to find local airlines that fly throughout the great state of Alaska. Explore the \'Last Frontier\' with FlyLocal.' }, { name: 'twitter:description', content: 'FlyLocal is the best way to find local airlines that fly throughout the great state of Alaska. Explore the \'Last Frontier\' with FlyLocal.' },
{ name: 'twitter:image', content: '/screenshot.png' }
{ name: 'twitter:image', content: 'https://flylocal.us/screenshot.png' }
], ],
link: [ link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' } { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }

+ 30
- 0
pages/flights.vue View File

@ -578,6 +578,36 @@ span.badge--avail {
font-weight: 300; font-weight: 300;
} }
.flyout .v-select {
font-size: 1.5rem;
}
.flyout .vs__dropdown-menu {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.flyout .vs__dropdown-menu li {
border-radius: 999px;
transition: 0.3 all;
}
.flyout .vs__dropdown-menu li:hover {
border-radius: 999px;
background-color: #007fff;
}
.flyout .vs__dropdown-toggle {
background: #eee;
border-radius: 1.2rem 1.2rem 1.2rem 1.2rem;
}
.flyout .vs--open .vs__dropdown-toggle {
background: #eee;
border-radius: 1.2rem 1.2rem 0 0;
}
</style> </style>
<style> <style>

Loading…
Cancel
Save