diff --git a/.vitepress/theme/components/PageHero.vue b/.vitepress/theme/components/PageHero.vue index e3c1fb4769..084eae0866 100644 --- a/.vitepress/theme/components/PageHero.vue +++ b/.vitepress/theme/components/PageHero.vue @@ -3,9 +3,9 @@

-

+

-

+
diff --git a/src/developers/components/DeveloperHero.vue b/src/developers/components/DeveloperHero.vue index 8aa308cd94..9263d837bc 100644 --- a/src/developers/components/DeveloperHero.vue +++ b/src/developers/components/DeveloperHero.vue @@ -8,17 +8,58 @@ import { generateUTMUrl } from './utils' defineProps<{ title?: string }>() const route = useRoute() -const applyLink = computed(() => generateUTMUrl(partnerConfig.pageHeroBanner.applyButton.url, route.path)) +const hireUsLink = computed(() => generateUTMUrl(partnerConfig.hireUsButtonUrl, route.path)) + + diff --git a/src/developers/partnerConfig.js b/src/developers/partnerConfig.js index 962117cb58..48c391c94a 100644 --- a/src/developers/partnerConfig.js +++ b/src/developers/partnerConfig.js @@ -25,12 +25,14 @@ const partnerConfig = { // Hero Section pageHeroBanner: { - title: 'Vue Developers', - description: 'Vue Developers are certified individual freelancers. Payments, compliance and vetting are administrated by our partner Proxify. Interested to join the list?', - applyButton: { - url: applyUrl, - label: 'Apply here' - } + 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 diff --git a/src/partners/components/PartnerHero.vue b/src/partners/components/PartnerHero.vue index 583e0c891c..e4339de332 100644 --- a/src/partners/components/PartnerHero.vue +++ b/src/partners/components/PartnerHero.vue @@ -8,12 +8,14 @@ defineProps<{ title?: string }>()