fleet/website/views/pages/support.ejs
Eric ff51cd352c
Website: update content personalization to use new primaryBuyingSituation values. (#28667)
Closes: #28336
Closes: #28656


Changes:
- Updated personalization on the /contact, /support, /login, /register,
/pricing, /software-management, and /device-management pages to use new
primary buying situation values.
- Updated the /software-management page to show the section of security
content to users with no primaryBuyingSituation set
- Updated the support links shown to IT users
2025-04-30 10:54:43 -05:00

66 lines
3.7 KiB
Text
Vendored
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div id="support" v-cloak>
<div purpose="page-container" class="container">
<div purpose="page-title" class="mx-auto">
<h1>Ask the community</h1>
<p>Fleet has an active open-source community of kind and helpful people. If you have a question about something that isn't in the documentation, we hang out in:</p>
<%primaryBuyingSituation%>
</div>
<div purpose="community-cards" class="d-flex justify-content-center flex-sm-row flex-column">
<a href="https://macadmins.org" target="_blank" class="<%= !primaryBuyingSituation || ['it-misc', 'it-major-mdm', 'it-gap-filler-mdm'].includes(primaryBuyingSituation) ? 'd-flex' : 'd-none' %>" no-icon>
<div purpose="support-card" class="card d-flex justify-content-center" >
<div class="d-flex flex-row align-items-center">
<img alt="Macadmins logo" src="/images/logo-macadmins-48x48@2x.png">
<h3>macadmins // #fleet</h3>
</div>
<p>Chat about next-gen MDM, packaging, Apple, Windows, desktop Linux, apps, scripting. (And all things IT.)</p>
</div>
</a>
<a href="https://chat.osquery.io/c/fleet" target="_blank" class="<%= ['it-misc', 'it-major-mdm', 'it-gap-filler-mdm'].includes(primaryBuyingSituation) ? 'd-none' : 'd-flex'%>" no-icon>
<div purpose="support-card" class="card d-flex justify-content-center">
<div class="d-flex flex-row align-items-center">
<img alt="Osquery logo" src="/images/logo-osquery-48x48@2x.png">
<h3>osquery // #fleet</h3>
</div>
<p><%= primaryBuyingSituation === 'security-misc' ? 'Chat about securing servers, laptops, and more.' :
primaryBuyingSituation === 'security-vm' ? 'Chat about the future of security engineering, vulnerability management, OT/ICS, cybersecurity, and more.' :
'Chat about posture, detection, vulns, reporting. (And all things cybersecurity.)'
%>
</p>
</div>
</a>
</div>
<div purpose="page-title" class="mx-auto">
<h1>Support</h1>
<p>Ask a question, chat with engineers, or get in touch with the Fleet team. For answers to commonly asked questions, check the <a href="/docs/get-started/faq">FAQ</a>.</p>
</div>
<div purpose="support-cards" class="d-flex mx-auto justify-content-center">
<div purpose="support-row" class="d-flex">
<a href="https://github.com/fleetdm/fleet/issues/new?assignees=&labels=bug%2C%3Areproduce&projects=&template=bug-report.md&title=" target="_blank" no-icon>
<div purpose="support-card" class="card d-flex justify-content-center">
<img alt="Bug report" src="/images/icon-bug-64x64@2x.png">
<h3>Bug report</h3>
<p>Report a bug to help us improve.</p>
</div>
</a>
<a href="https://github.com/fleetdm/fleet/issues/new?assignees=&labels=~customer+request&projects=&template=feature-request.md&title=" target="_blank" no-icon>
<div purpose="support-card" class="card d-flex justify-content-center">
<img alt="Suggestions" src="/images/icon-suggestion-64x64@2x.png" class="mx-auto mx-sm-0">
<h3>Suggest a feature</h3>
<p>Propose a new feature or enhancement in Fleet.</p>
</div>
</a>
<a href="/contact">
<div purpose="support-card" class="card d-flex justify-content-center" >
<img alt="Ask us anything" src="/images/icon-ask-anything-64x64@2x.png">
<h3>Ask us anything</h3>
<p>Cant find what youre looking for? Get in touch.</p>
</div>
</a>
</div>
</div>
</div>
</div>
<%- /* Expose server-rendered data as window.SAILS_LOCALS :: */ exposeLocalsToBrowser() %>