mirror of
https://github.com/fleetdm/fleet
synced 2026-05-14 20:48:35 +00:00
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
66 lines
3.7 KiB
Text
Vendored
66 lines
3.7 KiB
Text
Vendored
<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>Can’t find what you’re looking for? Get in touch.</p>
|
||
</div>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
<%- /* Expose server-rendered data as window.SAILS_LOCALS :: */ exposeLocalsToBrowser() %>
|