Skip to content

Commit

Permalink
chore(docs): add new banner
Browse files Browse the repository at this point in the history
  • Loading branch information
m0ksem committed Oct 28, 2024
1 parent ee91a97 commit 23e5867
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/docs/assets/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
--bg-partners: #621708;
--bg-customize-1: #210505;
--bg-customize-2: #000;
--bg-seamless: #49170d;
--bg-admin: #621708;
--bg-seamless: #38120a;
--bg-admin: #481308;

--header-height: 4rem;
--header-z-index: 2000;
Expand Down
30 changes: 30 additions & 0 deletions packages/docs/components/landing/banners/ScheduleACall.vue
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>
2 changes: 1 addition & 1 deletion packages/docs/layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ onMounted(() => {
isSidebarVisible.value = !breakpoints.smDown
setTimeout(() => {
doShowLoader.value = false
}, 200);
}, 300);
window.addEventListener('mousemove', onMouseMove)
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div v-show="!isMobileMenuOpen">
<LandingPreview />
<LandingPartners />
<LandingBannersVuejsDeConference />
<LandingBannersScheduleACall />
<LandingFeatures />
<LandingCustomize />
<LandingSeamlessIntegration />
Expand Down

0 comments on commit 23e5867

Please sign in to comment.