diff --git a/Views/App.csproj b/Views/App.csproj
deleted file mode 100644
index a50784c..0000000
--- a/Views/App.csproj
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-
- net7.0-android;net7.0-ios;net7.0-maccatalyst
- $(TargetFrameworks);net7.0-windows10.0.19041.0
-
-
- Exe
- App
- true
- true
- enable
-
-
- App
-
-
- com.companyname.app
- 4117f2dd-e862-4cb9-896a-a6a11b44f720
-
-
- 1.0
- 1
-
- 11.0
- 13.1
- 21.0
- 10.0.17763.0
- 10.0.17763.0
- 6.5
-
-
-
- false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Views/App.xaml b/Views/App.xaml
deleted file mode 100644
index 4e3074b..0000000
--- a/Views/App.xaml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Views/App.xaml.cs b/Views/App.xaml.cs
deleted file mode 100644
index 4df35ce..0000000
--- a/Views/App.xaml.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-namespace Views;
-
-public partial class App : Application
-{
- public App()
- {
- InitializeComponent();
-
- MainPage = new AppShell();
- }
-}
-
diff --git a/Views/AppShell.xaml b/Views/AppShell.xaml
deleted file mode 100644
index 528030b..0000000
--- a/Views/AppShell.xaml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
diff --git a/Views/AppShell.xaml.cs b/Views/AppShell.xaml.cs
deleted file mode 100644
index d3fe947..0000000
--- a/Views/AppShell.xaml.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-namespace Views;
-
-public partial class AppShell : Shell
-{
- public AppShell()
- {
- InitializeComponent();
- }
-}
-
diff --git a/Views/MainPage.xaml b/Views/MainPage.xaml
deleted file mode 100644
index 66b8033..0000000
--- a/Views/MainPage.xaml
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Views/MainPage.xaml.cs b/Views/MainPage.xaml.cs
deleted file mode 100644
index e895ad4..0000000
--- a/Views/MainPage.xaml.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-namespace Views;
-
-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/Views/MauiProgram.cs b/Views/MauiProgram.cs
deleted file mode 100644
index 05533f4..0000000
--- a/Views/MauiProgram.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using Microsoft.Extensions.Logging;
-
-namespace Views;
-
-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/Views/Platforms/Android/AndroidManifest.xml b/Views/Platforms/Android/AndroidManifest.xml
deleted file mode 100644
index ddd284f..0000000
--- a/Views/Platforms/Android/AndroidManifest.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/Views/Platforms/Android/MainActivity.cs b/Views/Platforms/Android/MainActivity.cs
deleted file mode 100644
index c76d482..0000000
--- a/Views/Platforms/Android/MainActivity.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using Android.App;
-using Android.Content.PM;
-using Android.OS;
-
-namespace Views;
-
-[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
-public class MainActivity : MauiAppCompatActivity
-{
-}
-
diff --git a/Views/Platforms/Android/MainApplication.cs b/Views/Platforms/Android/MainApplication.cs
deleted file mode 100644
index cb26eb4..0000000
--- a/Views/Platforms/Android/MainApplication.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using Android.App;
-using Android.Runtime;
-
-namespace Views;
-
-[Application]
-public class MainApplication : MauiApplication
-{
- public MainApplication(IntPtr handle, JniHandleOwnership ownership)
- : base(handle, ownership)
- {
- }
-
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
-
diff --git a/Views/Platforms/Android/Resources/values/colors.xml b/Views/Platforms/Android/Resources/values/colors.xml
deleted file mode 100644
index c2794f7..0000000
--- a/Views/Platforms/Android/Resources/values/colors.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- #512BD4
- #2B0B98
- #2B0B98
-
-
diff --git a/Views/Platforms/MacCatalyst/AppDelegate.cs b/Views/Platforms/MacCatalyst/AppDelegate.cs
deleted file mode 100644
index 116bad8..0000000
--- a/Views/Platforms/MacCatalyst/AppDelegate.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using Foundation;
-
-namespace Views;
-
-[Register("AppDelegate")]
-public class AppDelegate : MauiUIApplicationDelegate
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
-
diff --git a/Views/Platforms/MacCatalyst/Info.plist b/Views/Platforms/MacCatalyst/Info.plist
deleted file mode 100644
index c96dd0a..0000000
--- a/Views/Platforms/MacCatalyst/Info.plist
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
- UIDeviceFamily
-
- 1
- 2
-
- UIRequiredDeviceCapabilities
-
- arm64
-
- UISupportedInterfaceOrientations
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- UISupportedInterfaceOrientations~ipad
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- XSAppIconAssets
- Assets.xcassets/appicon.appiconset
-
-
diff --git a/Views/Platforms/MacCatalyst/Program.cs b/Views/Platforms/MacCatalyst/Program.cs
deleted file mode 100644
index 7fc784c..0000000
--- a/Views/Platforms/MacCatalyst/Program.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using ObjCRuntime;
-using UIKit;
-
-namespace Views;
-
-public class Program
-{
- // This is the main entry point of the application.
- static void Main(string[] args)
- {
- // if you want to use a different Application Delegate class from "AppDelegate"
- // you can specify it here.
- UIApplication.Main(args, null, typeof(AppDelegate));
- }
-}
-
diff --git a/Views/Platforms/Tizen/Main.cs b/Views/Platforms/Tizen/Main.cs
deleted file mode 100644
index d7dc398..0000000
--- a/Views/Platforms/Tizen/Main.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-using Microsoft.Maui;
-using Microsoft.Maui.Hosting;
-
-namespace Views;
-
-class Program : MauiApplication
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-
- static void Main(string[] args)
- {
- var app = new Program();
- app.Run(args);
- }
-}
-
diff --git a/Views/Platforms/Tizen/tizen-manifest.xml b/Views/Platforms/Tizen/tizen-manifest.xml
deleted file mode 100644
index 8d74e96..0000000
--- a/Views/Platforms/Tizen/tizen-manifest.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
- maui-appicon-placeholder
-
-
-
-
- http://tizen.org/privilege/internet
-
-
-
-
diff --git a/Views/Platforms/Windows/App.xaml b/Views/Platforms/Windows/App.xaml
deleted file mode 100644
index 2d3845f..0000000
--- a/Views/Platforms/Windows/App.xaml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
diff --git a/Views/Platforms/Windows/App.xaml.cs b/Views/Platforms/Windows/App.xaml.cs
deleted file mode 100644
index a250347..0000000
--- a/Views/Platforms/Windows/App.xaml.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using Microsoft.UI.Xaml;
-
-// To learn more about WinUI, the WinUI project structure,
-// and more about our project templates, see: http://aka.ms/winui-project-info.
-
-namespace Views.WinUI;
-
-///
-/// Provides application-specific behavior to supplement the default Application class.
-///
-public partial class App : MauiWinUIApplication
-{
- ///
- /// Initializes the singleton application object. This is the first line of authored code
- /// executed, and as such is the logical equivalent of main() or WinMain().
- ///
- public App()
- {
- this.InitializeComponent();
- }
-
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
-
-
diff --git a/Views/Platforms/Windows/Package.appxmanifest b/Views/Platforms/Windows/Package.appxmanifest
deleted file mode 100644
index 6012eb6..0000000
--- a/Views/Platforms/Windows/Package.appxmanifest
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
- $placeholder$
- User Name
- $placeholder$.png
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Views/Platforms/Windows/app.manifest b/Views/Platforms/Windows/app.manifest
deleted file mode 100644
index 1a3ef8c..0000000
--- a/Views/Platforms/Windows/app.manifest
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
- true/PM
- PerMonitorV2, PerMonitor
-
-
-
-
diff --git a/Views/Platforms/iOS/AppDelegate.cs b/Views/Platforms/iOS/AppDelegate.cs
deleted file mode 100644
index 116bad8..0000000
--- a/Views/Platforms/iOS/AppDelegate.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using Foundation;
-
-namespace Views;
-
-[Register("AppDelegate")]
-public class AppDelegate : MauiUIApplicationDelegate
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
-
diff --git a/Views/Platforms/iOS/Info.plist b/Views/Platforms/iOS/Info.plist
deleted file mode 100644
index 0004a4f..0000000
--- a/Views/Platforms/iOS/Info.plist
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
- LSRequiresIPhoneOS
-
- UIDeviceFamily
-
- 1
- 2
-
- UIRequiredDeviceCapabilities
-
- arm64
-
- UISupportedInterfaceOrientations
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- UISupportedInterfaceOrientations~ipad
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- XSAppIconAssets
- Assets.xcassets/appicon.appiconset
-
-
diff --git a/Views/Platforms/iOS/Program.cs b/Views/Platforms/iOS/Program.cs
deleted file mode 100644
index 7fc784c..0000000
--- a/Views/Platforms/iOS/Program.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using ObjCRuntime;
-using UIKit;
-
-namespace Views;
-
-public class Program
-{
- // This is the main entry point of the application.
- static void Main(string[] args)
- {
- // if you want to use a different Application Delegate class from "AppDelegate"
- // you can specify it here.
- UIApplication.Main(args, null, typeof(AppDelegate));
- }
-}
-
diff --git a/Views/Properties/launchSettings.json b/Views/Properties/launchSettings.json
deleted file mode 100644
index 90f92d9..0000000
--- a/Views/Properties/launchSettings.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "profiles": {
- "Windows Machine": {
- "commandName": "MsixPackage",
- "nativeDebugging": false
- }
- }
-}
diff --git a/Views/Resources/AppIcon/appicon.svg b/Views/Resources/AppIcon/appicon.svg
deleted file mode 100644
index 49f9800..0000000
--- a/Views/Resources/AppIcon/appicon.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
diff --git a/Views/Resources/AppIcon/appiconfg.svg b/Views/Resources/AppIcon/appiconfg.svg
deleted file mode 100644
index e9b7139..0000000
--- a/Views/Resources/AppIcon/appiconfg.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
diff --git a/Views/Resources/Fonts/OpenSans-Regular.ttf b/Views/Resources/Fonts/OpenSans-Regular.ttf
deleted file mode 100644
index 2c3020b..0000000
Binary files a/Views/Resources/Fonts/OpenSans-Regular.ttf and /dev/null differ
diff --git a/Views/Resources/Fonts/OpenSans-Semibold.ttf b/Views/Resources/Fonts/OpenSans-Semibold.ttf
deleted file mode 100644
index 3e7fe53..0000000
Binary files a/Views/Resources/Fonts/OpenSans-Semibold.ttf and /dev/null differ
diff --git a/Views/Resources/Images/dotnet_bot.svg b/Views/Resources/Images/dotnet_bot.svg
deleted file mode 100644
index e19b012..0000000
--- a/Views/Resources/Images/dotnet_bot.svg
+++ /dev/null
@@ -1,95 +0,0 @@
-
-
-
diff --git a/Views/Resources/Raw/AboutAssets.txt b/Views/Resources/Raw/AboutAssets.txt
deleted file mode 100644
index 808d6d3..0000000
--- a/Views/Resources/Raw/AboutAssets.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-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/Views/Resources/Splash/splash.svg b/Views/Resources/Splash/splash.svg
deleted file mode 100644
index 4b71383..0000000
--- a/Views/Resources/Splash/splash.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
diff --git a/Views/Resources/Styles/Colors.xaml b/Views/Resources/Styles/Colors.xaml
deleted file mode 100644
index e4a7a43..0000000
--- a/Views/Resources/Styles/Colors.xaml
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
- #512BD4
- #DFD8F7
- #2B0B98
- White
- Black
- #E1E1E1
- #C8C8C8
- #ACACAC
- #919191
- #6E6E6E
- #404040
- #212121
- #141414
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #F7B548
- #FFD590
- #FFE5B9
- #28C2D1
- #7BDDEF
- #C3F2F4
- #3E8EED
- #72ACF1
- #A7CBF6
-
-
diff --git a/Views/Resources/Styles/Styles.xaml b/Views/Resources/Styles/Styles.xaml
deleted file mode 100644
index d23a11d..0000000
--- a/Views/Resources/Styles/Styles.xaml
+++ /dev/null
@@ -1,406 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-