+
+
+
+
setSearchTerm(e.target.value)}
+ className="search-input"
+ />
+
+
+
+ {filteredServices.length === 0 && searchTerm.trim() ? (
+
+
No services found matching "{searchTerm}"
+
+ ) : (
+
+ {filteredServices.map((service, index) => (
+
+ ))}
+
+ )}
+
+ );
+};
diff --git a/src/config/docsearch.ts b/src/config/docsearch.ts
index f93ee99e..2ca1ceb0 100644
--- a/src/config/docsearch.ts
+++ b/src/config/docsearch.ts
@@ -20,6 +20,8 @@ export default {
boostFilter = "hierarchy.lvl0:LocalStack for AWS";
} else if (pathname.startsWith('/snowflake/')) {
boostFilter = "hierarchy.lvl0:LocalStack for Snowflake";
+ } else if (pathname.startsWith('/azure/')) {
+ boostFilter = "hierarchy.lvl0:LocalStack for Azure";
}
if (!boostFilter) {
diff --git a/src/content/docs/azure/changelog.mdx b/src/content/docs/azure/changelog.mdx
new file mode 100644
index 00000000..33c4a48e
--- /dev/null
+++ b/src/content/docs/azure/changelog.mdx
@@ -0,0 +1,12 @@
+---
+title: Changelog
+description: Changelog for LocalStack for Azure.
+template: doc
+editUrl: false
+---
+
+This changelog will track updates to LocalStack's Azure support, including new services, enhancements, and compatibility fixes.
+
+### Upcoming
+
+- Initial Azure documentation navigation and service discovery pages.
diff --git a/src/content/docs/azure/getting-started/index.mdx b/src/content/docs/azure/getting-started/index.mdx
new file mode 100644
index 00000000..d043146e
--- /dev/null
+++ b/src/content/docs/azure/getting-started/index.mdx
@@ -0,0 +1,7 @@
+---
+title: Installation
+description: Installation guide to get started with LocalStack for Azure.
+template: doc
+sidebar:
+ order: 0
+---
diff --git a/src/content/docs/azure/index.mdx b/src/content/docs/azure/index.mdx
new file mode 100644
index 00000000..952d3dc9
--- /dev/null
+++ b/src/content/docs/azure/index.mdx
@@ -0,0 +1,68 @@
+---
+title: Welcome to LocalStack for Azure Docs
+description: Get started with LocalStack for Azure docs.
+template: doc
+editUrl: false
+sidebar:
+ label: Welcome
+ order: 1
+---
+
+import { OverviewCards, HeroCards } from '../../../components/OverviewCards';
+import rocketIcon from '../../../assets/images/GettingStarted_Color.svg';
+import connectionsIcon from '../../../assets/images/Integrations_Color.svg';
+import cubeIcon from '../../../assets/images/LSAWS_Color.svg';
+import fileIcon from '../../../assets/images/file.svg';
+import changeIcon from '../../../assets/images/change.svg';
+
+