forked from vuetifyjs/vuetify
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(enterprise-support): update support options
- Loading branch information
1 parent
9e2d22f
commit 3c04145
Showing
7 changed files
with
152 additions
and
54 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ | |
:text="tierText(tier)" | ||
:variant="i === 1 ? 'flat' : 'outlined'" | ||
class="mb-6 text-none" | ||
color="primary" | ||
color="#6458f2" | ||
rel="noopener" | ||
target="_blank" | ||
block | ||
|
@@ -76,25 +76,6 @@ | |
const { mdAndUp } = useDisplay() | ||
const tiers = [ | ||
{ | ||
name: 'Grass Tier', | ||
price: 'Free', | ||
href: 'https://community.vuetifyjs.com/', | ||
src: 'https://cdn.vuetifyjs.com/docs/images/discord/tiers/grass.png', | ||
text: 'Ask questions in our public Discord help channels.', | ||
benefits: [ | ||
{ | ||
name: '#vuetify-3-help', | ||
text: 'Ask questions and get help for Vuetify 3 from the community in this public channel.', | ||
emoji: '3️⃣', | ||
}, | ||
{ | ||
name: '#vuetify-2-help', | ||
text: 'Ask questions and get help for Vuetify 2 from the community in this public channel.', | ||
emoji: '2️⃣', | ||
}, | ||
], | ||
}, | ||
{ | ||
name: 'Wood Tier', | ||
price: '$2.99', | ||
|
@@ -152,36 +133,6 @@ | |
text: 'Get a private help channel where you can ask questions to the Core Team.', | ||
emoji: '🔨', | ||
}, | ||
{ | ||
name: 'Priority GitHub Issues', | ||
text: 'Get priority on your GitHub reported issues.', | ||
emoji: '🚨', | ||
}, | ||
], | ||
}, | ||
{ | ||
name: 'Galaxy Tier', | ||
contact: true, | ||
price: '$199.99', | ||
suffix: '/mo', | ||
href: 'mailto:[email protected]?subject=Galaxy%20Tier%20Support%20Request', | ||
src: 'https://cdn.vuetifyjs.com/docs/images/discord/tiers/galaxy.png', | ||
text: 'Get support for up to 3 developers with a private help channel.', | ||
benefits: [ | ||
{ | ||
text: 'Every channel in Planetary Tier plus:', | ||
emoji: '💫', | ||
}, | ||
{ | ||
name: 'Extra Developers', | ||
text: 'Get a private help channel where up to 3 developers can ask questions directly to the Core Team.', | ||
emoji: '🛠️', | ||
}, | ||
{ | ||
name: 'Direct Support Discounts', | ||
text: '50% discount on all Direct Support services.', | ||
emoji: '🏷️', | ||
}, | ||
], | ||
}, | ||
] | ||
|
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,143 @@ | ||
<template> | ||
<v-sheet | ||
border="s e b" | ||
class="overflow-hidden" | ||
max-width="900" | ||
rounded | ||
> | ||
<v-divider | ||
class="border-opacity-100" | ||
color="primary" | ||
thickness="4" | ||
/> | ||
|
||
<v-container class="py-9 px-5" fluid> | ||
<v-row justify="space-around" dense> | ||
<template v-for="(tier, i) in tiers" :key="i"> | ||
<v-col | ||
:class="i === 1 && 'bg-primary'" | ||
class="position-relative pa-4 rounded-lg" | ||
cols="12" | ||
md="4" | ||
> | ||
<v-responsive :min-height="mdAndUp ? 96 : undefined" class="mb-4"> | ||
<h3 class="d-flex align-center text-h6 font-weight-medium mb-4"> | ||
<v-avatar :image="tier.src" class="me-3" /> | ||
|
||
<div> | ||
{{ tier.name }} | ||
|
||
<div class="text-h5 font-weight-bold"> | ||
{{ tier.price }}<span v-if="tier.suffix" class="font-weight-medium opacity-60 text-body-2">{{ tier.suffix }}</span> | ||
</div> | ||
</div> | ||
</h3> | ||
|
||
<v-btn | ||
:color="i === 1 ? 'surface' : 'primary'" | ||
:href="tier.href" | ||
:text="tierText(tier)" | ||
:variant="i === 1 ? 'flat' : 'outlined'" | ||
class="mb-6 text-none" | ||
rel="noopener" | ||
target="_blank" | ||
block | ||
/> | ||
|
||
<div class="text-caption">{{ tier.text }}</div> | ||
</v-responsive> | ||
|
||
<v-divider class="mb-4" /> | ||
|
||
<ul class="text-caption ps-1" style="list-style-type: none;"> | ||
<li v-for="(benefit, k) in tier.benefits" :key="k" class="mb-2 d-flex"> | ||
<div class="me-2">{{ benefit.emoji }}</div> | ||
|
||
<div> | ||
<strong>{{ benefit.name }}</strong> | ||
|
||
<div class="opacity-60"> | ||
{{ benefit.text }} | ||
</div> | ||
</div> | ||
</li> | ||
</ul> | ||
</v-col> | ||
</template> | ||
</v-row> | ||
</v-container> | ||
</v-sheet> | ||
</template> | ||
|
||
<script setup> | ||
const { mdAndUp } = useDisplay() | ||
const tiers = [ | ||
{ | ||
name: 'Galaxy Tier', | ||
price: '$250', | ||
suffix: '/mo', | ||
href: 'https://buy.stripe.com/cN2fZOfIE7xc4iA288', | ||
src: 'https://cdn.vuetifyjs.com/docs/images/avatars/galaxy.png', | ||
text: '🥉 For 2 developers', | ||
benefits: [ | ||
{ | ||
name: 'Chat support', | ||
text: 'Get a private Discord channel where your developers can ask questions directly to the Core Team.', | ||
emoji: '💬', | ||
}, | ||
{ | ||
name: 'Same day response', | ||
text: 'Questions are answered within 24 hours, Monday through Friday.', | ||
emoji: '🕒', | ||
}, | ||
], | ||
}, | ||
{ | ||
name: 'Cosmic Tier', | ||
price: '$500', | ||
suffix: '/mo', | ||
href: 'https://buy.stripe.com/7sIfZO0NK3gW3ewfYZ', | ||
src: 'https://cdn.vuetifyjs.com/docs/images/avatars/cosmic.png', | ||
text: '🥈 For up to 5 developers', | ||
benefits: [ | ||
{ | ||
name: 'Everything in Galaxy Tier, plus:', | ||
emoji: '💫', | ||
}, | ||
{ | ||
name: 'Priority bug fixes', | ||
text: 'Get priority on reported or identified Vuetify GitHub issues.', | ||
emoji: '🎯', | ||
}, | ||
], | ||
}, | ||
{ | ||
name: 'Multiverse Tier', | ||
price: '$1,000', | ||
suffix: '/mo', | ||
href: 'https://buy.stripe.com/8wMeVKeEA04K8yQeUW', | ||
src: 'https://cdn.vuetifyjs.com/docs/images/avatars/multiverse.png', | ||
text: '🥇 For up to 15 developers', | ||
benefits: [ | ||
{ | ||
name: 'Everything in Cosmic Tier, plus:', | ||
emoji: '💫', | ||
}, | ||
{ | ||
name: 'Monthly strategy session', | ||
text: 'A monthly strategy session to discuss your project and how to best utilize Vuetify.', | ||
emoji: '📅', | ||
}, | ||
], | ||
}, | ||
] | ||
function tierText (tier) { | ||
if (tier.trial) return 'Start free trial' | ||
if (tier.price === 'Free') return 'Join Community' | ||
if (tier.contact) return 'Contact Us' | ||
return 'Subscribe' | ||
} | ||
</script> |
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
|
||
<AppDrawerDrawer /> | ||
|
||
<AppToc /> | ||
<AppToc v-if="!route.meta.fluid" /> | ||
|
||
<AppBackToTop /> | ||
|
||
|
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