diff --git a/README.md b/README.md index 4886b0197..0573ebfe1 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,8 @@ --- +> 🚀 **We're hiring!** Join HyperFormula team as a **Senior Software Engineer**. [See the role and apply](https://handsontable.traffit.com/public/an/4b09e1395bf8ea42ef86db4c4657992c2f48673d). + HyperFormula is a headless spreadsheet built in TypeScript, serving as both a parser and evaluator of spreadsheet formulas. It can be integrated into your browser or utilized as a service with Node.js as your back-end technology. ## What HyperFormula can be used for? diff --git a/docs/.vuepress/components/HiringBanner.vue b/docs/.vuepress/components/HiringBanner.vue new file mode 100644 index 000000000..55207e6f5 --- /dev/null +++ b/docs/.vuepress/components/HiringBanner.vue @@ -0,0 +1,87 @@ + + + + + diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 6e95cc8a9..eecf3aa24 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -11,6 +11,7 @@ const searchPattern = new RegExp('^/api', 'i'); module.exports = { title: 'HyperFormula (v' + HyperFormula.version + ')', description: 'HyperFormula is an open-source, high-performance calculation engine for spreadsheets and web applications.', + globalUIComponents: ['HiringBanner'], head: [ // Import HF (required for the examples) [ 'script', { src: 'https://cdn.jsdelivr.net/npm/hyperformula/dist/hyperformula.full.min.js' } ], @@ -40,7 +41,7 @@ module.exports = { new Sentry.Replay({ maskAllText: false, blockAllMedia: false, - }), + }), ], }); };