forked from vuejs/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpartnerConfig.js
75 lines (63 loc) · 2.32 KB
/
partnerConfig.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import partnerData from '../partners/partners.json'
const partnerName = 'Proxify'
const partner = partnerData.find(partner => partner.name === partnerName)
const websiteLabel = 'proxify.io'
const websiteUrl = 'https://proxify.io/'
const applyUrl = 'https://career.proxify.io/apply'
const hireUrl = 'https://proxify.io/hire-vuejs'
const vueArticleUrl = 'https://proxify.io/hire-vue-developers'
const imageStorageUrl = 'https://res.cloudinary.com/proxify-io/image/upload'
const partnerConfig = {
// Partner information
partnerName: partner?.name,
logo: partner?.logo,
flipLogo: partner?.flipLogo || false,
// Partner website
websiteUrl: websiteUrl,
hireUsButtonUrl: hireUrl,
// Image storage URL
imageStorageUrl: imageStorageUrl,
// Hero Section
pageHeroBanner: {
title: 'Find top Vue.js developers for your team',
description1: 'Access certified Vue.js developers available for your next project.',
description2: 'Proxify handles the vetting process to ensure top-tier quality and reliability.',
hireButton: {
url: hireUrl,
label: 'Find Vue.js developers now'
},
footer: "Get matched with a top Vue.js developer in less than 48 hours",
},
// Hero Section
pageJoinSection: {
title: 'Become a listed developer',
description: 'Get a long-term part-time or full-time position at company looking for a Vue.js developer.',
applyButton: {
url: applyUrl,
label: 'Apply to join'
}
},
// Footer Configuration
pageFooter: {
text: `This highly vetted developer is brought to you by Vue’s partner:`,
email: '[email protected]',
phone: '+44 20 4614 2667',
websiteVueLink: vueArticleUrl,
websiteVueLabel: websiteLabel + '/hire-vue-developers'
},
// Diagram sections
profileDiagram: {
title: 'Candidate profile',
prependText: 'How our developers score in the parameters that correlate best with future success in the role.'
},
scoreDiagram: {
title: 'Engineering excellence score',
prependText: 'The practical score range is 0 to 300. This is the distribution of scores for all evaluated Vue.js developers, and here’s where your candidate scored.',
appendText: 'Data from 3,661 evaluated Vue.js developers and 38,008 applicants.'
},
// Proficiency Section
proficiencies: {
skillsPerCard: 5
}
}
export default partnerConfig