forked from NdoleStudio/httpsms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFixedHeader.vue
More file actions
38 lines (38 loc) · 1.16 KB
/
FixedHeader.vue
File metadata and controls
38 lines (38 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<template>
<v-app-bar elevation="0" color="#121212" height="70" fixed>
<v-container>
<v-row>
<v-col class="w-full d-flex">
<nuxt-link
:to="{ name: 'index' }"
class="text--primary text-h4 text-decoration-none"
:class="{
'mt-5': $vuetify.breakpoint.mdAndDown,
'mt-4': !$vuetify.breakpoint.mdAndDown,
}"
>
<v-avatar v-if="$vuetify.breakpoint.lgAndUp" tile size="30">
<v-img contain :src="require('@/assets/img/logo.svg')"></v-img>
</v-avatar>
HTTP SMS
</nuxt-link>
<v-spacer></v-spacer>
<v-btn
exact-path
class="primary mt-5 mb-5"
:large="$vuetify.breakpoint.lgAndUp"
:to="{ name: 'login' }"
>
Get Started
<span v-if="$vuetify.breakpoint.lgAndUp"> For Free</span>
</v-btn>
</v-col>
</v-row>
</v-container>
</v-app-bar>
</template>
<script lang="ts">
import { Vue, Component } from 'vue-property-decorator'
@Component
export default class FixedHeader extends Vue {}
</script>