diff --git a/docs/demos/aspnetcore-blazor/READM.md b/docs/demos/aspnetcore-blazor/READM.md
new file mode 100644
index 0000000..2cf5164
--- /dev/null
+++ b/docs/demos/aspnetcore-blazor/READM.md
@@ -0,0 +1,52 @@
+### Web (ASP.NET Core Razor & Blazor)
+
+The ASP.NET Core and Blaozr apps are setup to run locally against the APIs running in Docker. If you are unable to deploy locally, you can use these pre-deployed services:
+
+Open up ` src/Web/Server/appsettings.Development.json` and `src/Web/Client/wwwroot/appsettings.Development.json` enter this for both
+
+```json
+"PodcastApi": {
+"BaseAddress": "https://podcastapica.delightfulocean-02c18c32.canadacentral.azurecontainerapps.io"
+},
+"ListenTogetherHub": "https://dotnetpodcasts-listentogether-hub.azurewebsites.net/listentogether"
+```
+Watch the .NET Conf 2021 demo of .NET MAUI here: https://youtu.be/gYQxBHjRNr0?t=2699
+
+### Demo Script Snippets
+
+```razor
+
+ @foreach (var item in showSubscriptions)
+ {
+ -
+
@item.Title
+ @item.Author
+
+
+ }
+
+```
+
+```razor
+
+```
+
+```razor
+
+
+
+
+
+
+
+
+
+```
+
+```razor
+
+```
+
+
diff --git a/docs/demos/blazor-hybrid/README.md b/docs/demos/blazor-hybrid/README.md
new file mode 100644
index 0000000..f4607c6
--- /dev/null
+++ b/docs/demos/blazor-hybrid/README.md
@@ -0,0 +1,13 @@
+### Blazor Hybrid + .NET MAUI Setup
+
+The .NET MAUI & Blazor Hybrid apps are setup to run locally against the APIs running in Docker. If you are unable to deploy locally, you can use these pre-deployed services:
+
+Open `src/MobileBlazor/mauiapp/MauiProgram.cs` and enter
+
+```csharp
+public static string BaseWeb = $"https://dotnetpodcasts.azurewebsites.net/";
+public static string APIUrl = $"https://podcastapica.delightfulocean-02c18c32.canadacentral.azurecontainerapps.io/v1/";
+public static string ListenTogetherUrl = $"https://dotnetpodcasts-listentogether-hub.azurewebsites.net/listentogether";
+```
+
+Watch the .NET Conf 2021 demo of Blaozry Hybrid & .NET MAUI here: https://youtu.be/gYQxBHjRNr0?t=3999
diff --git a/docs/demos/dotnet-maui/README.md b/docs/demos/dotnet-maui/README.md
new file mode 100644
index 0000000..4cb5d1d
--- /dev/null
+++ b/docs/demos/dotnet-maui/README.md
@@ -0,0 +1,13 @@
+## .NET MAUI Configuration
+
+The .NET MAUI apps are setup to run locally against the APIs running in Docker. If you are unable to deploy locally, you can use these pre-deployed services:
+
+Open `src/Mobile/Config.cs` and enter
+
+```csharp
+public static string BaseWeb = $"https://dotnetpodcasts.azurewebsites.net/";
+public static string APIUrl = $"https://podcastapica.delightfulocean-02c18c32.canadacentral.azurecontainerapps.io/v1/";
+public static string ListenTogetherUrl = $"https://dotnetpodcasts-listentogether-hub.azurewebsites.net/listentogether";
+```
+
+Watch the .NET Conf 2021 demo of .NET MAUI here: https://youtu.be/gYQxBHjRNr0?t=3357