diff --git a/mastermind/App.xaml b/mastermind/App.xaml
new file mode 100644
index 0000000..b850e1e
--- /dev/null
+++ b/mastermind/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mastermind/App.xaml.cs b/mastermind/App.xaml.cs
new file mode 100644
index 0000000..ad9efe4
--- /dev/null
+++ b/mastermind/App.xaml.cs
@@ -0,0 +1,12 @@
+namespace mastermind
+{
+ public partial class App : Application
+ {
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+ }
+}
diff --git a/mastermind/AppShell.xaml b/mastermind/AppShell.xaml
new file mode 100644
index 0000000..f4e7ab9
--- /dev/null
+++ b/mastermind/AppShell.xaml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
diff --git a/mastermind/AppShell.xaml.cs b/mastermind/AppShell.xaml.cs
new file mode 100644
index 0000000..0fcecd0
--- /dev/null
+++ b/mastermind/AppShell.xaml.cs
@@ -0,0 +1,10 @@
+namespace mastermind
+{
+ public partial class AppShell : Shell
+ {
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/mastermind/MainPage.xaml b/mastermind/MainPage.xaml
new file mode 100644
index 0000000..031f06f
--- /dev/null
+++ b/mastermind/MainPage.xaml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mastermind/MainPage.xaml.cs b/mastermind/MainPage.xaml.cs
new file mode 100644
index 0000000..2255fdf
--- /dev/null
+++ b/mastermind/MainPage.xaml.cs
@@ -0,0 +1,25 @@
+namespace mastermind
+{
+ public partial class MainPage : ContentPage
+ {
+ int count = 0;
+
+ public MainPage()
+ {
+ InitializeComponent();
+ }
+
+ private void OnCounterClicked(object sender, EventArgs e)
+ {
+ count++;
+
+ if (count == 1)
+ CounterBtn.Text = $"Clicked {count} time";
+ else
+ CounterBtn.Text = $"Clicked {count} times";
+
+ SemanticScreenReader.Announce(CounterBtn.Text);
+ }
+ }
+
+}
diff --git a/mastermind/MauiProgram.cs b/mastermind/MauiProgram.cs
new file mode 100644
index 0000000..180aedb
--- /dev/null
+++ b/mastermind/MauiProgram.cs
@@ -0,0 +1,25 @@
+using Microsoft.Extensions.Logging;
+
+namespace mastermind
+{
+ public static class MauiProgram
+ {
+ public static MauiApp CreateMauiApp()
+ {
+ var builder = MauiApp.CreateBuilder();
+ builder
+ .UseMauiApp()
+ .ConfigureFonts(fonts =>
+ {
+ fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
+ fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
+ });
+
+#if DEBUG
+ builder.Logging.AddDebug();
+#endif
+
+ return builder.Build();
+ }
+ }
+}
diff --git a/mastermind/Resources/AppIcon/appicon.svg b/mastermind/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..5f04fcf
--- /dev/null
+++ b/mastermind/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/mastermind/Resources/AppIcon/appiconfg.svg b/mastermind/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..62d66d7
--- /dev/null
+++ b/mastermind/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/mastermind/Resources/Fonts/OpenSans-Regular.ttf b/mastermind/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..9ab655d
Binary files /dev/null and b/mastermind/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/mastermind/Resources/Fonts/OpenSans-Semibold.ttf b/mastermind/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..2b7468e
Binary files /dev/null and b/mastermind/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/mastermind/Resources/Images/dotnet_bot.png b/mastermind/Resources/Images/dotnet_bot.png
new file mode 100644
index 0000000..f93ce02
Binary files /dev/null and b/mastermind/Resources/Images/dotnet_bot.png differ
diff --git a/mastermind/Resources/Raw/AboutAssets.txt b/mastermind/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..50b8a7b
--- /dev/null
+++ b/mastermind/Resources/Raw/AboutAssets.txt
@@ -0,0 +1,15 @@
+Any raw assets you want to be deployed with your application can be placed in
+this directory (and child directories). Deployment of the asset to your application
+is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
+
+
+
+These files will be deployed with you package and will be accessible using Essentials:
+
+ async Task LoadMauiAsset()
+ {
+ using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
+ using var reader = new StreamReader(stream);
+
+ var contents = reader.ReadToEnd();
+ }
diff --git a/mastermind/Resources/Splash/splash.svg b/mastermind/Resources/Splash/splash.svg
new file mode 100644
index 0000000..62d66d7
--- /dev/null
+++ b/mastermind/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/mastermind/Resources/Styles/Colors.xaml b/mastermind/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..22f0a67
--- /dev/null
+++ b/mastermind/Resources/Styles/Colors.xaml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+ #512BD4
+ #ac99ea
+ #242424
+ #DFD8F7
+ #9880e5
+ #2B0B98
+
+ White
+ Black
+ #D600AA
+ #190649
+ #1f1f1f
+
+ #E1E1E1
+ #C8C8C8
+ #ACACAC
+ #919191
+ #6E6E6E
+ #404040
+ #212121
+ #141414
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mastermind/Resources/Styles/Styles.xaml b/mastermind/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..5bc20f1
--- /dev/null
+++ b/mastermind/Resources/Styles/Styles.xaml
@@ -0,0 +1,426 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mastermind/mastermind.csproj b/mastermind/mastermind.csproj
new file mode 100644
index 0000000..0383953
--- /dev/null
+++ b/mastermind/mastermind.csproj
@@ -0,0 +1,65 @@
+
+
+
+ net8.0-android;net8.0-ios;net8.0-maccatalyst
+ $(TargetFrameworks);net8.0-windows10.0.19041.0
+
+
+
+
+
+
+ Exe
+ mastermind
+ true
+ true
+ enable
+ enable
+
+
+ mastermind
+
+
+ com.companyname.mastermind
+
+
+ 1.0
+ 1
+
+ 11.0
+ 13.1
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+