Skip to content

Commit

Permalink
Add meta tags for SEO
Browse files Browse the repository at this point in the history
  • Loading branch information
rafu01 authored and shuhanmirza committed May 26, 2023
1 parent a508d76 commit 44907d7
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 19 deletions.
6 changes: 6 additions & 0 deletions surelink-vue/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
<template>
<div id="app">
<meta name="title" content="SureLink - Free Link Shortener" />
<meta name="description" content="It is a short link generator tool that helps you generate tinyurls. It provides security from harmful links and makes the urls human friendly" />
<meta name="keywords" content="url shortener free, bitly url shortener, google short url, tinyurl generator, url shorten" />
<meta property="og:title" content="SureLink - Free Link Shortener" />
<meta property="og:description" content="It is a short link generator tool that helps you generate tinyurls. It provides security from harmful links and makes the urls human friendly" />
<meta property="og:image" content="https://surel.ink/img/logo.b4c96294.svg" />
<router-view/>
</div>
</template>
Expand Down
37 changes: 18 additions & 19 deletions surelink-vue/src/components/Navbar.vue
Original file line number Diff line number Diff line change
@@ -1,38 +1,37 @@
<template>
<nav class="navbar is-transparent" role="navigation" aria-label="main navigation">
<div class="navbar-brand columns">
<a class="column is-3" href="/">
<img src="../../src/assets/images/logo.svg" width="32" height="32"> SureLink
</a>
</div>
</nav>
<nav class="navbar is-transparent" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a href="/">
<img src="../../src/assets/images/logo.svg" width="32" height="32"> SureLink
</a>
</div>
</nav>
</template>
<script>
export default {
name: 'Navbar'
name: 'Navbar'
}
</script>
<style>
.navbar .navbar-brand {
text-align: center;
display: block;
width: 100%;
text-align: center;
display: block;
width: 100%;
}
nav.navbar {
min-height: unset;
height: 0;
font-family: 'Roboto';
padding: 0;
min-height: unset;
height: 0;
font-family: 'Roboto';
padding: 0;
}
a {
text-decoration: none !important;
text-decoration: none !important;
}
.navbar .navbar-brand>.navbar-item,
.navbar .navbar-brand > .navbar-item,
.navbar .navbar-brand {
display: inline-block;
display: inline-block;
}
</style>

0 comments on commit 44907d7

Please sign in to comment.