-
Notifications
You must be signed in to change notification settings - Fork 452
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Website: update /app-library page (#24778)
Closes: #24259 Closes: fleetdm/confidential#9070 Changes: - Added a section about custom packages and app store apps to the /app-library page. - Updated the "Request an app" button to "Add an app" and updated it to link to the maintained apps JSON.
- Loading branch information
Showing
4 changed files
with
74 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
<div purpose="count-and-cta" class="d-flex flex-sm-row flex-column align-items-sm-center align-items-start justify-content-sm-between justify-content-center mb-3"> | ||
<div><p class="mb-0"><strong>{{allApps.length}} and counting....</strong></p></div> | ||
<div class="d-sm-block d-none"> | ||
<a purpose="request-button" href="/contact?sendMessage">Request an app</a> | ||
<a purpose="request-button" href="https://github.com/fleetdm/fleet/edit/main/server/mdm/maintainedapps/apps.json" target="_blank">Add an app</a> | ||
</div> | ||
</div> | ||
<div purpose="app-cards" class="card-deck flex-wrap"> | ||
|
@@ -49,7 +49,28 @@ | |
<div purpose="app-card" class="card d-flex invisible"></div> | ||
</div> | ||
<div class="d-flex d-sm-none w-100"> | ||
<a purpose="request-button" href="/contact?sendMessage">Request an app</a> | ||
<a purpose="request-button" href="https://github.com/fleetdm/fleet/edit/main/server/mdm/maintainedapps/apps.json" target="_blank">Add an app</a> | ||
</div> | ||
<div purpose="feature-cards" class="d-flex flex-md-row flex-column"> | ||
<div purpose="feature-card" class="d-flex flex-md-row flex-column"> | ||
<div> | ||
<img alt="Custom packages" src="/images/[email protected]"> | ||
</div> | ||
<div class="d-flex flex-column"> | ||
<h3>Custom Packages</h3> | ||
<p>Upload any third-party software as a custom package to deploy all of the tools your end users need to work.</p> | ||
</div> | ||
</div> | ||
<div purpose="feature-card" class="d-flex flex-md-row flex-column"> | ||
<div> | ||
<img alt="App store" src="/images/[email protected]"> | ||
</div> | ||
<div class="d-flex flex-column"> | ||
<h3>App store</h3> | ||
<p>Manage app deployments and updates for your computers and mobile devices from any app store.</p> | ||
<p purpose="feature-footnote">*Microsoft Store and Google Play coming soon</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|