Initial commit
This commit is contained in:
62
resources/js/views/front-pages/landing-page/banner.vue
Normal file
62
resources/js/views/front-pages/landing-page/banner.vue
Normal file
@@ -0,0 +1,62 @@
|
||||
<script setup>
|
||||
import ctaDashborad from '@images/front-pages/landing-page/cta-dashboard.png'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div
|
||||
class="landing-cta bg-surface"
|
||||
:class="$vuetify.theme.current.dark ? 'banner-bg-dark' : 'banner-bg-light'"
|
||||
>
|
||||
<VContainer>
|
||||
<div class="d-flex justify-center justify-md-space-between flex-wrap gap-6 gap-x-10 position-relative pt-12">
|
||||
<div class="align-self-center">
|
||||
<div class="banner-title text-primary mb-1">
|
||||
Ready to Get Started?
|
||||
</div>
|
||||
<h5 class="text-h5 text-medium-emphasis mb-8">
|
||||
Start your project with a 14-day free trial
|
||||
</h5>
|
||||
<VBtn
|
||||
color="primary"
|
||||
:to="{ name: 'front-pages-payment' }"
|
||||
:size="$vuetify.display.smAndUp ? 'large' : 'default' "
|
||||
>
|
||||
Get Started
|
||||
</VBtn>
|
||||
</div>
|
||||
|
||||
<div class="banner-img">
|
||||
<img
|
||||
:src="ctaDashborad"
|
||||
class="w-100"
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</VContainer>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style lang="scss">
|
||||
.landing-cta {
|
||||
background-size: cover;
|
||||
margin-block: auto;
|
||||
}
|
||||
|
||||
.banner-img {
|
||||
margin-block-end: -22px;
|
||||
}
|
||||
|
||||
.banner-title {
|
||||
font-size: 34px;
|
||||
font-weight: 700;
|
||||
line-height: 44px;
|
||||
}
|
||||
|
||||
.banner-bg-light {
|
||||
background-image: url("@images/front-pages/backgrounds/cta-bg.png");
|
||||
}
|
||||
|
||||
.banner-bg-dark {
|
||||
background-image: url("@images/front-pages/backgrounds/cta-bg-dark.png");
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user