From a7b3560714b4d9cc4ab32dffcd1f74a284b93580 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Fri, 18 Feb 2022 09:45:46 +0000 Subject: Add latest changes from gitlab-org/gitlab@14-8-stable-ee --- .../product_qualified_lead_guide/index.md | 94 ++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 doc/development/product_qualified_lead_guide/index.md (limited to 'doc/development/product_qualified_lead_guide') diff --git a/doc/development/product_qualified_lead_guide/index.md b/doc/development/product_qualified_lead_guide/index.md new file mode 100644 index 00000000000..f9d18bacecd --- /dev/null +++ b/doc/development/product_qualified_lead_guide/index.md @@ -0,0 +1,94 @@ +--- +stage: Growth +group: Conversion +info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments +--- + +# Product Qualified Lead (PQL) development guide + +The Product Qualified Lead (PQL) funnel connects our users with our team members. Read more about [PQL product principles](https://about.gitlab.com/handbook/product/product-principles/#product-qualified-leads-pqls). + +A hand-raise PQL is a user who requests to speak to sales from within the product. + +## Embed a hand-raise lead form + +[HandRaiseLeadButton](https://gitlab.com/gitlab-org/gitlab/-/blob/master/ee/app/assets/javascripts/hand_raise_leads/hand_raise_lead/components/hand_raise_lead_button.vue) is a reusable component that adds a button and a hand-raise modal to any screen. + +You can import a hand-raise lead button the following way. + +```javascript +import HandRaiseLeadButton from 'ee/hand_raise_leads/hand_raise_lead/components/hand_raise_lead_button.vue'; + +export default { + components: { + HandRaiseLeadButton, +... + + +