overleaf-cep/services/web/app/views/subscriptions/plans/_faq_new.pug
M Fahru da203d6e96 Merge pull request #26749 from overleaf/mf-tear-down-plans-page-bs5
[web] Tear down plans-page-bs5 and make the bs5 version the default version

GitOrigin-RevId: 6a4d8c8a75597bbda23057f8ca404cf6c5e1f428
2025-07-10 08:08:06 +00:00

64 lines
1.9 KiB
Text

include ./_plans_faq_tabs
include ../../_mixins/eyebrow
include ../../_mixins/material_symbol
- var managingYourSubscription = 'managingYourSubscription'
- var overleafIndividualPlans = 'overleafIndividualPlans'
- var overleafGroupPlans = 'overleafGroupPlans'
.plans-faq
.row.row-spaced-extra-large
.col-md-12.faq-heading-container
h2
+eyebrow(translate('frequently_asked_questions'))
| #{translate("your_questions_answered")}
.row
.col-xs-12
.ol-tabs.plans-faq-tabs
.nav-tabs-container
ul.nav.nav-tabs(role='tablist')
li(role='presentation')
a.active(
role='tab'
data-bs-toggle='tab'
href='#' + managingYourSubscription
aria-controls=managingYourSubscription
)
| #{translate('managing_your_subscription')}
li(role='presentation')
a(
role='tab'
data-toggle='tab'
data-bs-toggle='tab'
href='#' + overleafIndividualPlans
aria-controls=overleafIndividualPlans
)
| #{translate('overleaf_individual_plans')}
li(role='presentation')
a(
role='tab'
data-toggle='tab'
data-bs-toggle='tab'
href='#' + overleafGroupPlans
aria-controls=overleafGroupPlans
)
| #{translate('overleaf_group_plans')}
.tab-content
.tab-pane.active(role='tabpanel' id=managingYourSubscription)
+managingYourSubscription
.tab-pane(role='tabpanel' id=overleafIndividualPlans)
+overleafIndividualPlans
.tab-pane(role='tabpanel' id=overleafGroupPlans)
+overleafGroupPlans
.row
.col-xs-12.plans-faq-support
span #{translate('still_have_questions')}
button(
data-ol-open-contact-form-modal='general'
data-bs-toggle='modal'
data-bs-target='#contactUsModal'
)
span(style='margin-right: 4px') #{translate('contact_support')}
+material-symbol-rounded('arrow_right_alt', 'icon-md')