Skip to content

Commit

Permalink
Merge pull request #90 from canopas/vithanidarpan-job-website-seo-update
Browse files Browse the repository at this point in the history
Update jobs website title and description
  • Loading branch information
cp-sumi-k authored Mar 8, 2022
2 parents 51fd7fa + be403af commit 609d4dd
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 16 deletions.
9 changes: 1 addition & 8 deletions vue-frontend/src/components/ContactScreen.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,7 @@ export default {
data() {
return {
isLoading: false,
seoData: {
title:
"Let's discuss your idea or problem you're facing in your business.",
description:
"Thank you for choosing Canopas for your business. Fill out all the required information about you and your business. We will get back to you soon.",
type: "Website",
url: config.BASE_URL + "/contact",
},
seoData: config.CONTACT_SEO_META_DATA,
};
},
mounted() {
Expand Down
9 changes: 1 addition & 8 deletions vue-frontend/src/components/JobsScreen.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,7 @@ library.add(faAlignLeft, faCheckCircle, faMinus);
export default {
data() {
return {
seoData: {
title:
"Career at Canopas - Explore Life at Canopas, Find Jobs at Canopas, and Apply Today.",
description:
"Canopas is looking for professionals who are ready to step out of their comfort zones, want to acquire new skills, and want to make an impact in the world with their work.",
type: "Jobs Posting Website",
url: config.BASE_URL + "/jobs",
},
seoData: config.JOBS_SEO_META_DATA,
};
},
components: {
Expand Down
14 changes: 14 additions & 0 deletions vue-frontend/src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,20 @@ export default Object.freeze({
type: "Website",
url: "https://dev-stack.canopas.com",
},
JOBS_SEO_META_DATA: {
title: "Explore Life at Canopas, Find IT jobs in surat at Canopas.",
description:
"Software developer jobs in surat, IT jobs in surat. If you're ready to step out of your comfort zone, want to acquire new skills, we would love to meet you.",
type: "Jobs Posting Website",
url: "https://dev-stack.canopas.com/jobs",
},
CONTACT_SEO_META_DATA: {
title: "Let's discuss your idea or problem you're facing in your business.",
description:
"Thank you for choosing Canopas for your business. Fill out all the required information about you and your business. We will get back to you soon.",
type: "Website",
url: "https://dev-stack.canopas.com/contact",
},
GAP_ID_ROOT: "",
IS_PROD: false,
});
14 changes: 14 additions & 0 deletions vue-frontend/src/config.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,20 @@ export default Object.freeze({
type: "Website",
url: "https://canopas.com",
},
JOBS_SEO_META_DATA: {
title: "Explore Life at Canopas, Find IT jobs in surat at Canopas.",
description:
"Software developer jobs in surat, IT jobs in surat. If you're ready to step out of your comfort zone, want to acquire new skills, we would love to meet you.",
type: "Jobs Posting Website",
url: "https://canopas.com/jobs",
},
CONTACT_SEO_META_DATA: {
title: "Let's discuss your idea or problem you're facing in your business.",
description:
"Thank you for choosing Canopas for your business. Fill out all the required information about you and your business. We will get back to you soon.",
type: "Website",
url: "https://canopas.com/contact",
},
GAP_ID_ROOT: "G-VXHMMMEJ5X",
IS_PROD: true,
});

0 comments on commit 609d4dd

Please sign in to comment.