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
34 lines (32 loc) · 954 Bytes
/
Copy pathFixedHeader.vue
File metadata and controls
34 lines (32 loc) · 954 Bytes
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
<script setup lang="ts">
import { useDisplay } from 'vuetify'
const { lgAndUp, mdAndDown } = useDisplay()
</script>
<template>
<v-app-bar elevation="0" color="#121212" height="70">
<v-container>
<v-row>
<v-col class="w-full d-flex">
<NuxtLink
:to="{ name: 'index' }"
class="text-on-surface text-headline-large text-decoration-none"
:class="{ 'mt-5': mdAndDown, 'mt-4': !mdAndDown }"
>
<v-avatar v-if="lgAndUp" :image="'/img/logo.svg'" :size="30" />
HTTP SMS
</NuxtLink>
<v-spacer />
<v-btn
color="primary"
class="mt-5 mb-5"
:size="lgAndUp ? 'large' : 'default'"
:to="{ name: 'login' }"
>
Get Started
<span v-if="lgAndUp"> For Free</span>
</v-btn>
</v-col>
</v-row>
</v-container>
</v-app-bar>
</template>