diff --git a/WguApp/.gitignore b/WguApp/.gitignore
new file mode 100644
index 0000000..1349347
--- /dev/null
+++ b/WguApp/.gitignore
@@ -0,0 +1,3 @@
+bin/
+obj/
+.idea/
\ No newline at end of file
diff --git a/WguApp/.noai b/WguApp/.noai
new file mode 100644
index 0000000..e69de29
diff --git a/WguApp/App.xaml b/WguApp/App.xaml
new file mode 100644
index 0000000..c9c032c
--- /dev/null
+++ b/WguApp/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/WguApp/App.xaml.cs b/WguApp/App.xaml.cs
new file mode 100644
index 0000000..19970ac
--- /dev/null
+++ b/WguApp/App.xaml.cs
@@ -0,0 +1,14 @@
+namespace WguApp;
+
+public partial class App : Application
+{
+ public App()
+ {
+ InitializeComponent();
+ }
+
+ protected override Window CreateWindow(IActivationState? activationState)
+ {
+ return new Window(new AppShell());
+ }
+}
\ No newline at end of file
diff --git a/WguApp/AppShell.xaml b/WguApp/AppShell.xaml
new file mode 100644
index 0000000..64baa83
--- /dev/null
+++ b/WguApp/AppShell.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
diff --git a/WguApp/AppShell.xaml.cs b/WguApp/AppShell.xaml.cs
new file mode 100644
index 0000000..63aba5d
--- /dev/null
+++ b/WguApp/AppShell.xaml.cs
@@ -0,0 +1,9 @@
+namespace WguApp;
+
+public partial class AppShell : Shell
+{
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/WguApp/GlobalXmlns.cs b/WguApp/GlobalXmlns.cs
new file mode 100644
index 0000000..6e8ad19
--- /dev/null
+++ b/WguApp/GlobalXmlns.cs
@@ -0,0 +1,2 @@
+[assembly: XmlnsDefinition("http://schemas.microsoft.com/dotnet/maui/global", "WguApp")]
+[assembly: XmlnsDefinition("http://schemas.microsoft.com/dotnet/maui/global", "WguApp.Pages")]
\ No newline at end of file
diff --git a/WguApp/MainPage.xaml b/WguApp/MainPage.xaml
new file mode 100644
index 0000000..17f1c76
--- /dev/null
+++ b/WguApp/MainPage.xaml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/WguApp/MainPage.xaml.cs b/WguApp/MainPage.xaml.cs
new file mode 100644
index 0000000..0a25bcd
--- /dev/null
+++ b/WguApp/MainPage.xaml.cs
@@ -0,0 +1,23 @@
+namespace WguApp;
+
+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);
+ }
+}
\ No newline at end of file
diff --git a/WguApp/MauiProgram.cs b/WguApp/MauiProgram.cs
new file mode 100644
index 0000000..4863001
--- /dev/null
+++ b/WguApp/MauiProgram.cs
@@ -0,0 +1,24 @@
+using Microsoft.Extensions.Logging;
+
+namespace WguApp;
+
+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();
+ }
+}
\ No newline at end of file
diff --git a/WguApp/Platforms/Android/AndroidManifest.xml b/WguApp/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..e9937ad
--- /dev/null
+++ b/WguApp/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/WguApp/Platforms/Android/MainActivity.cs b/WguApp/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..b9d6e5d
--- /dev/null
+++ b/WguApp/Platforms/Android/MainActivity.cs
@@ -0,0 +1,12 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace WguApp;
+
+[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, LaunchMode = LaunchMode.SingleTop,
+ ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode |
+ ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
+public class MainActivity : MauiAppCompatActivity
+{
+}
\ No newline at end of file
diff --git a/WguApp/Platforms/Android/MainApplication.cs b/WguApp/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..e438b78
--- /dev/null
+++ b/WguApp/Platforms/Android/MainApplication.cs
@@ -0,0 +1,15 @@
+using Android.App;
+using Android.Runtime;
+
+namespace WguApp;
+
+[Application]
+public class MainApplication : MauiApplication
+{
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
\ No newline at end of file
diff --git a/WguApp/Platforms/Android/Resources/values/colors.xml b/WguApp/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..c04d749
--- /dev/null
+++ b/WguApp/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/WguApp/Platforms/MacCatalyst/AppDelegate.cs b/WguApp/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..fd60153
--- /dev/null
+++ b/WguApp/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,9 @@
+using Foundation;
+
+namespace WguApp;
+
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
\ No newline at end of file
diff --git a/WguApp/Platforms/MacCatalyst/Entitlements.plist b/WguApp/Platforms/MacCatalyst/Entitlements.plist
new file mode 100644
index 0000000..de4adc9
--- /dev/null
+++ b/WguApp/Platforms/MacCatalyst/Entitlements.plist
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+ com.apple.security.app-sandbox
+
+
+ com.apple.security.network.client
+
+
+
+
diff --git a/WguApp/Platforms/MacCatalyst/Info.plist b/WguApp/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..7268977
--- /dev/null
+++ b/WguApp/Platforms/MacCatalyst/Info.plist
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ UIDeviceFamily
+
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/WguApp/Platforms/MacCatalyst/Program.cs b/WguApp/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..e00b3ae
--- /dev/null
+++ b/WguApp/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,15 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace WguApp;
+
+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));
+ }
+}
\ No newline at end of file
diff --git a/WguApp/Platforms/Tizen/Main.cs b/WguApp/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..19f270e
--- /dev/null
+++ b/WguApp/Platforms/Tizen/Main.cs
@@ -0,0 +1,16 @@
+using System;
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+
+namespace WguApp;
+
+class Program : MauiApplication
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+}
\ No newline at end of file
diff --git a/WguApp/Platforms/Tizen/tizen-manifest.xml b/WguApp/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..27885c0
--- /dev/null
+++ b/WguApp/Platforms/Tizen/tizen-manifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+ maui-appicon-placeholder
+
+
+
+
+ http://tizen.org/privilege/internet
+
+
+
+
\ No newline at end of file
diff --git a/WguApp/Platforms/Windows/App.xaml b/WguApp/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..7f390ec
--- /dev/null
+++ b/WguApp/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/WguApp/Platforms/Windows/App.xaml.cs b/WguApp/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..bfb4ee1
--- /dev/null
+++ b/WguApp/Platforms/Windows/App.xaml.cs
@@ -0,0 +1,23 @@
+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 WguApp.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();
+}
\ No newline at end of file
diff --git a/WguApp/Platforms/Windows/Package.appxmanifest b/WguApp/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..1972145
--- /dev/null
+++ b/WguApp/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/WguApp/Platforms/Windows/app.manifest b/WguApp/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..d561f62
--- /dev/null
+++ b/WguApp/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/WguApp/Platforms/iOS/AppDelegate.cs b/WguApp/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..fd60153
--- /dev/null
+++ b/WguApp/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,9 @@
+using Foundation;
+
+namespace WguApp;
+
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
\ No newline at end of file
diff --git a/WguApp/Platforms/iOS/Info.plist b/WguApp/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..0004a4f
--- /dev/null
+++ b/WguApp/Platforms/iOS/Info.plist
@@ -0,0 +1,32 @@
+
+
+
+
+ LSRequiresIPhoneOS
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/WguApp/Platforms/iOS/Program.cs b/WguApp/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..e00b3ae
--- /dev/null
+++ b/WguApp/Platforms/iOS/Program.cs
@@ -0,0 +1,15 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace WguApp;
+
+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));
+ }
+}
\ No newline at end of file
diff --git a/WguApp/Platforms/iOS/Resources/PrivacyInfo.xcprivacy b/WguApp/Platforms/iOS/Resources/PrivacyInfo.xcprivacy
new file mode 100644
index 0000000..24ab3b4
--- /dev/null
+++ b/WguApp/Platforms/iOS/Resources/PrivacyInfo.xcprivacy
@@ -0,0 +1,51 @@
+
+
+
+
+
+ NSPrivacyAccessedAPITypes
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryFileTimestamp
+ NSPrivacyAccessedAPITypeReasons
+
+ C617.1
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategorySystemBootTime
+ NSPrivacyAccessedAPITypeReasons
+
+ 35F9.1
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryDiskSpace
+ NSPrivacyAccessedAPITypeReasons
+
+ E174.1
+
+
+
+
+
+
diff --git a/WguApp/Properties/launchSettings.json b/WguApp/Properties/launchSettings.json
new file mode 100644
index 0000000..4f85793
--- /dev/null
+++ b/WguApp/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "Project",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/WguApp/Resources/AppIcon/appicon.svg b/WguApp/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..9d63b65
--- /dev/null
+++ b/WguApp/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/WguApp/Resources/AppIcon/appiconfg.svg b/WguApp/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/WguApp/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/WguApp/Resources/Fonts/OpenSans-Regular.ttf b/WguApp/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..eefdc97
Binary files /dev/null and b/WguApp/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/WguApp/Resources/Fonts/OpenSans-Semibold.ttf b/WguApp/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..7df34d8
Binary files /dev/null and b/WguApp/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/WguApp/Resources/Images/dotnet_bot.png b/WguApp/Resources/Images/dotnet_bot.png
new file mode 100644
index 0000000..1d1b981
Binary files /dev/null and b/WguApp/Resources/Images/dotnet_bot.png differ
diff --git a/WguApp/Resources/Raw/AboutAssets.txt b/WguApp/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..89dc758
--- /dev/null
+++ b/WguApp/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 your 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/WguApp/Resources/Splash/splash.svg b/WguApp/Resources/Splash/splash.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/WguApp/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/WguApp/Resources/Styles/Colors.xaml b/WguApp/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..30307a5
--- /dev/null
+++ b/WguApp/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/WguApp/Resources/Styles/Styles.xaml b/WguApp/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..d4dded0
--- /dev/null
+++ b/WguApp/Resources/Styles/Styles.xaml
@@ -0,0 +1,440 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/WguApp/WguApp.csproj b/WguApp/WguApp.csproj
new file mode 100644
index 0000000..5b052a9
--- /dev/null
+++ b/WguApp/WguApp.csproj
@@ -0,0 +1,67 @@
+
+
+
+ net9.0-android;net9.0-ios;net9.0-maccatalyst
+ $(TargetFrameworks);net9.0-windows10.0.19041.0
+
+
+
+
+
+
+ Exe
+ WguApp
+ true
+ true
+ enable
+ enable
+
+
+ WguApp
+
+
+ com.companyname.wguapp
+
+
+ 1.0
+ 1
+
+
+ None
+
+ 15.0
+ 15.0
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/WguApp/WguApp.sln b/WguApp/WguApp.sln
new file mode 100644
index 0000000..7320939
--- /dev/null
+++ b/WguApp/WguApp.sln
@@ -0,0 +1,16 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WguApp", "WguApp.csproj", "{BB2F04F1-B5E0-4852-8AAA-AD1AB18D7011}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {BB2F04F1-B5E0-4852-8AAA-AD1AB18D7011}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {BB2F04F1-B5E0-4852-8AAA-AD1AB18D7011}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {BB2F04F1-B5E0-4852-8AAA-AD1AB18D7011}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {BB2F04F1-B5E0-4852-8AAA-AD1AB18D7011}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+EndGlobal