banner.vue
1.36 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
39
40
41
42
43
44
45
46
47
48
49
50
51
<script setup lang="ts">
import ctaDashborad from '@images/front-pages/landing-page/cta-dashboard.png'
</script>
<template>
<div class="landing-cta position-relative bg-surface">
<VContainer>
<div class="d-flex align-center justify-sm-space-between flex-column flex-md-row gap-y-4 pt-9">
<div class="text-sm-start text-center py-8">
<div class="banner-text pb-1">
Ready to Get Started?
</div>
<div class="text-body-1 font-weight-medium mb-8">
Start your project with a 14-day free trial
</div>
<VBtn
color="primary"
:append-icon="$vuetify.locale.isRtl ? 'ri-arrow-left-line' : 'ri-arrow-right-line'"
:to="{ name: 'front-pages-payment' }"
>
Get Started
</VBtn>
</div>
<VImg
:src="ctaDashborad"
:max-width="$vuetify.display.mdAndUp ? 600 : ''"
max-height="250"
width="auto"
class="mb-n4"
/>
</div>
</VContainer>
</div>
</template>
<style lang="scss" scoped>
.landing-cta {
background-image: url("@images/front-pages/backgrounds/cta-bg.png");
background-size: cover;
margin-block: auto;
}
.banner-text{
color: rgb(var(--v-theme-primary));
font-size: 32px;
font-weight: 700;
letter-spacing: 0.25px;
line-height: 42px;
}
</style>