-
Notifications
You must be signed in to change notification settings - Fork 340
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
34 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
packages/docs/components/landing/banners/ScheduleACall.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<template> | ||
<div class="event-banner"> | ||
<h2 class="va-h3"> | ||
Do You Need to <span class="va-text-primary">Migrate</span> Your Project to Vue 3? | ||
</h2> | ||
<p class="va-text max-w-[1000px] text-center"> | ||
Schedule a free call with our CTO to discuss your specific project needs. We'll assess your current setup and help you make the best decision for your business. Let's get your app ready for the future! | ||
</p> | ||
<VaButton to="https://calendly.com/epicmax/30min" target="blank"> | ||
Schedule a Call | ||
</VaButton> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
.event-banner { | ||
position: relative; | ||
display: flex; | ||
justify-content: center; | ||
background-color: color-mix(in srgb, var(--bg-partners) 80%, black 20%); | ||
flex-direction: column; | ||
align-items: center; | ||
gap: 1rem; | ||
padding: 2rem; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters