diff --git a/AppShell.xaml b/AppShell.xaml
index 7d2a2e1..47d100b 100644
--- a/AppShell.xaml
+++ b/AppShell.xaml
@@ -12,10 +12,13 @@
Title="Home"
ContentTemplate="{DataTemplate local:MainPage}"
Route="MainPage" />
-
+
diff --git a/MainPage.cs b/MainPage.cs
deleted file mode 100644
index 030cb8f..0000000
--- a/MainPage.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-namespace ShoopNCook;
-
-public class MainPage : ContentPage
-{
- public MainPage()
- {
- Content = new VerticalStackLayout
- {
- Children = {
- new Label { HorizontalOptions = LayoutOptions.Center, VerticalOptions = LayoutOptions.Center, Text = "Welcome to .NET MAUI!"
- }
- }
- };
- }
-}
\ No newline at end of file
diff --git a/Resources/AppIcon/account.svg b/Resources/AppIcon/account.svg
new file mode 100644
index 0000000..2edae3e
--- /dev/null
+++ b/Resources/AppIcon/account.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/Resources/AppIcon/sort.svg b/Resources/AppIcon/sort.svg
new file mode 100644
index 0000000..86ea35e
--- /dev/null
+++ b/Resources/AppIcon/sort.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/Resources/AppIcon/syncalt.svg b/Resources/AppIcon/syncalt.svg
new file mode 100644
index 0000000..8ca5e75
--- /dev/null
+++ b/Resources/AppIcon/syncalt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/ShoopNCook.csproj b/ShoopNCook.csproj
index e2e63d1..a167053 100644
--- a/ShoopNCook.csproj
+++ b/ShoopNCook.csproj
@@ -61,8 +61,10 @@
-
-
+
+
+ MSBuild:Compile
+
diff --git a/Views/HomePage.xaml b/Views/HomePage.xaml
new file mode 100644
index 0000000..fe4dc31
--- /dev/null
+++ b/Views/HomePage.xaml
@@ -0,0 +1,181 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Views/HomePage.xaml.cs b/Views/HomePage.xaml.cs
new file mode 100644
index 0000000..bf9671b
--- /dev/null
+++ b/Views/HomePage.xaml.cs
@@ -0,0 +1,9 @@
+namespace ShoopNCook.Views;
+
+public partial class HomePage : ContentPage
+{
+ public HomePage()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file