diff --git a/MyFirstMauiApp/MyFirstMauiApp.sln b/MyFirstMauiApp/MyFirstMauiApp.sln
index e4122c3..19f0713 100644
--- a/MyFirstMauiApp/MyFirstMauiApp.sln
+++ b/MyFirstMauiApp/MyFirstMauiApp.sln
@@ -19,7 +19,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LocalDataStorageWithSQLite"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorHybridWithMAUI", "BlazorHybridWithMAUI\BlazorHybridWithMAUI.csproj", "{D1B193FE-7F85-4709-BAB7-3E8B7110CF3E}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeatherClient", "WeatherClient\WeatherClient.csproj", "{CD7D204D-468C-4930-AFA1-9BD1DCE8E31C}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WeatherClient", "WeatherClient\WeatherClient.csproj", "{CD7D204D-468C-4930-AFA1-9BD1DCE8E31C}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NotesNet8", "NotesNet8\NotesNet8.csproj", "{066105D3-EEF7-432F-B784-8753A1BE3D92}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -81,6 +83,12 @@ Global
{CD7D204D-468C-4930-AFA1-9BD1DCE8E31C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CD7D204D-468C-4930-AFA1-9BD1DCE8E31C}.Release|Any CPU.Build.0 = Release|Any CPU
{CD7D204D-468C-4930-AFA1-9BD1DCE8E31C}.Release|Any CPU.Deploy.0 = Release|Any CPU
+ {066105D3-EEF7-432F-B784-8753A1BE3D92}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {066105D3-EEF7-432F-B784-8753A1BE3D92}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {066105D3-EEF7-432F-B784-8753A1BE3D92}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {066105D3-EEF7-432F-B784-8753A1BE3D92}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {066105D3-EEF7-432F-B784-8753A1BE3D92}.Release|Any CPU.Build.0 = Release|Any CPU
+ {066105D3-EEF7-432F-B784-8753A1BE3D92}.Release|Any CPU.Deploy.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/MyFirstMauiApp/NotesNet8/App.xaml b/MyFirstMauiApp/NotesNet8/App.xaml
new file mode 100644
index 0000000..13aad65
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/NotesNet8/App.xaml.cs b/MyFirstMauiApp/NotesNet8/App.xaml.cs
new file mode 100644
index 0000000..e51b13e
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/App.xaml.cs
@@ -0,0 +1,12 @@
+namespace NotesNet8
+{
+ public partial class App : Application
+ {
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+ }
+}
diff --git a/MyFirstMauiApp/NotesNet8/AppShell.xaml b/MyFirstMauiApp/NotesNet8/AppShell.xaml
new file mode 100644
index 0000000..b4a9829
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/AppShell.xaml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/NotesNet8/AppShell.xaml.cs b/MyFirstMauiApp/NotesNet8/AppShell.xaml.cs
new file mode 100644
index 0000000..4d4d359
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/AppShell.xaml.cs
@@ -0,0 +1,10 @@
+namespace NotesNet8
+{
+ public partial class AppShell : Shell
+ {
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/MyFirstMauiApp/NotesNet8/MainPage.xaml b/MyFirstMauiApp/NotesNet8/MainPage.xaml
new file mode 100644
index 0000000..8b44ae1
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/MainPage.xaml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/NotesNet8/MainPage.xaml.cs b/MyFirstMauiApp/NotesNet8/MainPage.xaml.cs
new file mode 100644
index 0000000..3a0eb18
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/MainPage.xaml.cs
@@ -0,0 +1,25 @@
+namespace NotesNet8
+{
+ 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/MyFirstMauiApp/NotesNet8/MauiProgram.cs b/MyFirstMauiApp/NotesNet8/MauiProgram.cs
new file mode 100644
index 0000000..9973edb
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/MauiProgram.cs
@@ -0,0 +1,25 @@
+using Microsoft.Extensions.Logging;
+
+namespace NotesNet8
+{
+ 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/MyFirstMauiApp/NotesNet8/NotesNet8.csproj b/MyFirstMauiApp/NotesNet8/NotesNet8.csproj
new file mode 100644
index 0000000..aec87a0
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/NotesNet8.csproj
@@ -0,0 +1,76 @@
+
+
+
+ net8.0-android;net8.0-ios;net8.0-maccatalyst
+ $(TargetFrameworks);net8.0-windows10.0.19041.0
+
+
+
+
+
+
+ Exe
+ NotesNet8
+ true
+ true
+ enable
+ enable
+
+
+ NotesNet8
+
+
+ com.companyname.notesnet8
+
+
+ 1.0
+ 1
+
+ 11.0
+ 13.1
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ MSBuild:Compile
+
+
+
+
diff --git a/MyFirstMauiApp/NotesNet8/Pages/AboutPage.xaml b/MyFirstMauiApp/NotesNet8/Pages/AboutPage.xaml
new file mode 100644
index 0000000..b3fd847
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Pages/AboutPage.xaml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/NotesNet8/Pages/AboutPage.xaml.cs b/MyFirstMauiApp/NotesNet8/Pages/AboutPage.xaml.cs
new file mode 100644
index 0000000..c33513b
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Pages/AboutPage.xaml.cs
@@ -0,0 +1,14 @@
+namespace NotesNet8.Pages;
+
+public partial class AboutPage : ContentPage
+{
+ public AboutPage()
+ {
+ InitializeComponent();
+ }
+
+ private async void LearnMore_Clicked(object sender, EventArgs e)
+ {
+ await Launcher.Default.OpenAsync("https://aka.ms/maui");
+ }
+}
\ No newline at end of file
diff --git a/MyFirstMauiApp/NotesNet8/Platforms/Android/AndroidManifest.xml b/MyFirstMauiApp/NotesNet8/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..e9937ad
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/NotesNet8/Platforms/Android/MainActivity.cs b/MyFirstMauiApp/NotesNet8/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..08c7246
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Platforms/Android/MainActivity.cs
@@ -0,0 +1,11 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace NotesNet8
+{
+ [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/MyFirstMauiApp/NotesNet8/Platforms/Android/MainApplication.cs b/MyFirstMauiApp/NotesNet8/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..6bfe5d2
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Platforms/Android/MainApplication.cs
@@ -0,0 +1,16 @@
+using Android.App;
+using Android.Runtime;
+
+namespace NotesNet8
+{
+ [Application]
+ public class MainApplication : MauiApplication
+ {
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/MyFirstMauiApp/NotesNet8/Platforms/Android/Resources/values/colors.xml b/MyFirstMauiApp/NotesNet8/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..c04d749
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/NotesNet8/Platforms/MacCatalyst/AppDelegate.cs b/MyFirstMauiApp/NotesNet8/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..b3d2eb0
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace NotesNet8
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/MyFirstMauiApp/NotesNet8/Platforms/MacCatalyst/Entitlements.plist b/MyFirstMauiApp/NotesNet8/Platforms/MacCatalyst/Entitlements.plist
new file mode 100644
index 0000000..de4adc9
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Platforms/MacCatalyst/Entitlements.plist
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+ com.apple.security.app-sandbox
+
+
+ com.apple.security.network.client
+
+
+
+
diff --git a/MyFirstMauiApp/NotesNet8/Platforms/MacCatalyst/Info.plist b/MyFirstMauiApp/NotesNet8/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..7268977
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/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/MyFirstMauiApp/NotesNet8/Platforms/MacCatalyst/Program.cs b/MyFirstMauiApp/NotesNet8/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..5a496f8
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace NotesNet8
+{
+ 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/MyFirstMauiApp/NotesNet8/Platforms/Tizen/Main.cs b/MyFirstMauiApp/NotesNet8/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..f0e3bfe
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Platforms/Tizen/Main.cs
@@ -0,0 +1,17 @@
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+using System;
+
+namespace NotesNet8
+{
+ internal class Program : MauiApplication
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+ }
+}
diff --git a/MyFirstMauiApp/NotesNet8/Platforms/Tizen/tizen-manifest.xml b/MyFirstMauiApp/NotesNet8/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..f0bb90d
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/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/MyFirstMauiApp/NotesNet8/Platforms/Windows/App.xaml b/MyFirstMauiApp/NotesNet8/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..9b37642
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/MyFirstMauiApp/NotesNet8/Platforms/Windows/App.xaml.cs b/MyFirstMauiApp/NotesNet8/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..8d437a1
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Platforms/Windows/App.xaml.cs
@@ -0,0 +1,25 @@
+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 NotesNet8.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/MyFirstMauiApp/NotesNet8/Platforms/Windows/Package.appxmanifest b/MyFirstMauiApp/NotesNet8/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..bdaf3ec
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/NotesNet8/Platforms/Windows/app.manifest b/MyFirstMauiApp/NotesNet8/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..d6745a5
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/MyFirstMauiApp/NotesNet8/Platforms/iOS/AppDelegate.cs b/MyFirstMauiApp/NotesNet8/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..b3d2eb0
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace NotesNet8
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/MyFirstMauiApp/NotesNet8/Platforms/iOS/Info.plist b/MyFirstMauiApp/NotesNet8/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..0004a4f
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/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/MyFirstMauiApp/NotesNet8/Platforms/iOS/Program.cs b/MyFirstMauiApp/NotesNet8/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..5a496f8
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Platforms/iOS/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace NotesNet8
+{
+ 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/MyFirstMauiApp/NotesNet8/Properties/launchSettings.json b/MyFirstMauiApp/NotesNet8/Properties/launchSettings.json
new file mode 100644
index 0000000..edf8aad
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/MyFirstMauiApp/NotesNet8/Resources/AppIcon/appicon.svg b/MyFirstMauiApp/NotesNet8/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..9d63b65
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/NotesNet8/Resources/AppIcon/appiconfg.svg b/MyFirstMauiApp/NotesNet8/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/NotesNet8/Resources/Fonts/OpenSans-Regular.ttf b/MyFirstMauiApp/NotesNet8/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..2d1edf0
Binary files /dev/null and b/MyFirstMauiApp/NotesNet8/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/MyFirstMauiApp/NotesNet8/Resources/Fonts/OpenSans-Semibold.ttf b/MyFirstMauiApp/NotesNet8/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..fe13d06
Binary files /dev/null and b/MyFirstMauiApp/NotesNet8/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/MyFirstMauiApp/NotesNet8/Resources/Images/dotnet_bot.png b/MyFirstMauiApp/NotesNet8/Resources/Images/dotnet_bot.png
new file mode 100644
index 0000000..f93ce02
Binary files /dev/null and b/MyFirstMauiApp/NotesNet8/Resources/Images/dotnet_bot.png differ
diff --git a/MyFirstMauiApp/NotesNet8/Resources/Images/icon_about.png b/MyFirstMauiApp/NotesNet8/Resources/Images/icon_about.png
new file mode 100644
index 0000000..fa470c2
Binary files /dev/null and b/MyFirstMauiApp/NotesNet8/Resources/Images/icon_about.png differ
diff --git a/MyFirstMauiApp/NotesNet8/Resources/Images/icon_notes.png b/MyFirstMauiApp/NotesNet8/Resources/Images/icon_notes.png
new file mode 100644
index 0000000..812cf73
Binary files /dev/null and b/MyFirstMauiApp/NotesNet8/Resources/Images/icon_notes.png differ
diff --git a/MyFirstMauiApp/NotesNet8/Resources/Raw/AboutAssets.txt b/MyFirstMauiApp/NotesNet8/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..15d6244
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/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/MyFirstMauiApp/NotesNet8/Resources/Splash/splash.svg b/MyFirstMauiApp/NotesNet8/Resources/Splash/splash.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/NotesNet8/Resources/Styles/Colors.xaml b/MyFirstMauiApp/NotesNet8/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..30307a5
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/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/MyFirstMauiApp/NotesNet8/Resources/Styles/Styles.xaml b/MyFirstMauiApp/NotesNet8/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..e0d36bb
--- /dev/null
+++ b/MyFirstMauiApp/NotesNet8/Resources/Styles/Styles.xaml
@@ -0,0 +1,426 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+