Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions site/app/data/announcement.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"visible": true,
"title": "Content update:",

"message": "The QuickStart <strong>Forms: Quick Capture and Analysis</strong> has been replaced. See the updated version: <a href='/guide/aiapps_forms/index.html' style='color: #000000 !important;'><strong>Building Forms for Data Capture and Analysis</strong></a>"

}
6 changes: 6 additions & 0 deletions site/app/data/featured-quickstarts.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
{
"recentQuickStarts": [
{
"title": "Building Forms for Data Capture and Analysis",
"id": "aiapps_forms",
"category": "aiapps",
"date": "April 2, 2026"
},
{
"title": "Automate Inventory Alerts with Scheduled Actions",
"id": "aiapps_scheduled_actions",
Expand Down
32 changes: 27 additions & 5 deletions site/app/views/default/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1126,15 +1126,39 @@
Maximize your investment in Sigma with easy-to-follow, step-by-step guides<br>
</p>

<div class="featured-container" style="margin: 0 0 20px 0;">
<h4 style="margin: 0 0 10px 0; color: black !important; font-size: 1.50em; font-weight: 600;">Recently Added QuickStarts:</h4>
<div id="qs-announcement" style="display:none; margin: 0 0 20px 0; padding: 14px 18px; background-color: #e0e4ff; border: 1px solid #4245ff; border-left: 4px solid #4245ff; border-radius: 4px; color: #171717; font-size: 0.95em; line-height: 1.5;">
<span id="qs-announcement-title" style="font-weight: 600;"></span>
<span id="qs-announcement-message"></span>
</div>
<script>
fetch('/data/announcement.json')
.then(response => response.json())
.then(data => {
if (data.visible) {
document.getElementById('qs-announcement-title').innerHTML = data.title ? data.title + ' ' : '';
document.getElementById('qs-announcement-message').innerHTML = data.message;
document.getElementById('qs-announcement').style.display = 'block';
}
})
.catch(() => {});
</script>

<details id="recent-qs-details" class="featured-container" style="margin: 0 0 8px 0;">
<summary style="margin: 0 0 10px 0; color: black !important; font-size: 1.50em; font-weight: 600; cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: 8px;">
Recently Added QuickStarts: <span id="recent-qs-hint" style="color: #4245ff; font-size: 0.65em; font-weight: 400;">&#9654; click to expand</span>
</summary>
<div id="recent-quickstarts" style="display: flex; gap: 10px; flex-wrap: wrap;">
<!-- Populated by JavaScript -->
<div style="color: #999;">Loading recent QuickStarts...</div>
</div>
</div>
</details>

<script>
document.getElementById('recent-qs-details').addEventListener('toggle', function() {
var hint = document.getElementById('recent-qs-hint');
hint.innerHTML = this.open ? '&#9660; click to collapse' : '&#9654; click to expand';
});

// Load featured QuickStarts from JSON
fetch('/data/featured-quickstarts.json')
.then(response => response.json())
Expand Down Expand Up @@ -1171,8 +1195,6 @@ <h4 style="margin: 0 0 10px 0; color: black !important; font-size: 1.50em; font-
document.getElementById('recent-quickstarts').innerHTML = '<li style="color: #999;">Unable to load recent QuickStarts</li>';
});
</script>
</div>
</p>


</div>
Expand Down

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Loading
Loading