Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion packages/docs/src/components/introduction/ConsultingServices.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<v-container class="pt-9 px-5" fluid>
<v-row justify="space-around" dense>
<template v-for="({ text, href, name, btnText, notes }, i) in cards" :key="i">
<template v-for="({ text, href, name, btnText, notes, extra }, i) in cards" :key="i">
<v-col cols="12" md="6">
<v-responsive class="h-100" content-class="d-flex flex-column">
<h3 class="d-flex align-center text-h6 font-weight-medium mb-4">
Expand All @@ -27,6 +27,10 @@
</ul>
</div>

<div v-if="extra" class="mb-auto text-caption mt-4">
{{ extra }}
</div>

<v-btn
:href="href"
:text="btnText"
Expand Down Expand Up @@ -81,5 +85,17 @@
text: 'Scale your team with Epicmax’s senior Vue.js and Vuetify developers. Our engineers seamlessly integrate into your workflow, modernize legacy Vue.js applications, optimize frontend performance, and build scalable web applications with clean, reliable UI/UX.',
btnText: 'Hire Developers',
},
{
name: '🤔 Not Sure if You Should Migrate?',
href: 'https://calendar.app.google/XwRzASZitZRSVLxq6',
text: 'If you\'re unsure about migrating from Vuetify 2 to Vuetify 3, Epicmax offers a free consultation with our technical lead to help you decide:',
notes: [
'Is now the best time to migrate?',
'What’s the real effort and cost?',
'What risks should you prepare for?',
],
extra: 'You’ll get a complete technical and business roadmap — so you can migrate now or later with confidence.',
btnText: 'Get Free Expert Advice',
},
]
</script>