diff --git a/Qwirkle/Qwirkle/AppShell.xaml b/Qwirkle/Qwirkle/AppShell.xaml
index 3b3168a..2021db8 100644
--- a/Qwirkle/Qwirkle/AppShell.xaml
+++ b/Qwirkle/Qwirkle/AppShell.xaml
@@ -4,12 +4,29 @@
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Qwirkle"
+ xmlns:localPages="clr-namespace:Qwirkle.Pages"
Shell.FlyoutBehavior="Disabled"
Title="Qwirkle">
-
-
-
+
+
+
+
+
+
+
diff --git a/Qwirkle/Qwirkle/Pages/Leaderboard.xaml b/Qwirkle/Qwirkle/Pages/Leaderboard.xaml
new file mode 100644
index 0000000..dcd0316
--- /dev/null
+++ b/Qwirkle/Qwirkle/Pages/Leaderboard.xaml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Pages/Leaderboard.xaml.cs b/Qwirkle/Qwirkle/Pages/Leaderboard.xaml.cs
new file mode 100644
index 0000000..3abf67e
--- /dev/null
+++ b/Qwirkle/Qwirkle/Pages/Leaderboard.xaml.cs
@@ -0,0 +1,9 @@
+namespace Qwirkle.Pages;
+
+public partial class Leaderboard : ContentPage
+{
+ public Leaderboard()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Pages/Play.xaml b/Qwirkle/Qwirkle/Pages/Play.xaml
new file mode 100644
index 0000000..3b5c95c
--- /dev/null
+++ b/Qwirkle/Qwirkle/Pages/Play.xaml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Pages/Play.xaml.cs b/Qwirkle/Qwirkle/Pages/Play.xaml.cs
new file mode 100644
index 0000000..02072cf
--- /dev/null
+++ b/Qwirkle/Qwirkle/Pages/Play.xaml.cs
@@ -0,0 +1,9 @@
+namespace Qwirkle.Pages;
+
+public partial class Play : ContentPage
+{
+ public Play()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Pages/Scoreboard.xaml b/Qwirkle/Qwirkle/Pages/Scoreboard.xaml
new file mode 100644
index 0000000..4390c71
--- /dev/null
+++ b/Qwirkle/Qwirkle/Pages/Scoreboard.xaml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Pages/Scoreboard.xaml.cs b/Qwirkle/Qwirkle/Pages/Scoreboard.xaml.cs
new file mode 100644
index 0000000..e878338
--- /dev/null
+++ b/Qwirkle/Qwirkle/Pages/Scoreboard.xaml.cs
@@ -0,0 +1,9 @@
+namespace Qwirkle.Pages;
+
+public partial class Scoreboard : ContentPage
+{
+ public Scoreboard()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Pages/Settings.xaml b/Qwirkle/Qwirkle/Pages/Settings.xaml
new file mode 100644
index 0000000..c142493
--- /dev/null
+++ b/Qwirkle/Qwirkle/Pages/Settings.xaml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Pages/Settings.xaml.cs b/Qwirkle/Qwirkle/Pages/Settings.xaml.cs
new file mode 100644
index 0000000..8919b5c
--- /dev/null
+++ b/Qwirkle/Qwirkle/Pages/Settings.xaml.cs
@@ -0,0 +1,9 @@
+namespace Qwirkle.Pages;
+
+public partial class Settings : ContentPage
+{
+ public Settings()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Qwirkle.csproj b/Qwirkle/Qwirkle/Qwirkle.csproj
index b64bb01..f68dec0 100644
--- a/Qwirkle/Qwirkle/Qwirkle.csproj
+++ b/Qwirkle/Qwirkle/Qwirkle.csproj
@@ -62,4 +62,34 @@
+
+
+ Leaderboard.xaml
+
+
+ Scoreboard.xaml
+
+
+ Settings.xaml
+
+
+ Play.xaml
+
+
+
+
+
+ MSBuild:Compile
+
+
+ MSBuild:Compile
+
+
+ MSBuild:Compile
+
+
+ MSBuild:Compile
+
+
+
diff --git a/Qwirkle/Qwirkle/Resources/Images/dotnet_bot.png b/Qwirkle/Qwirkle/Resources/Images/dotnet_bot.png
index f93ce02..91dc407 100644
Binary files a/Qwirkle/Qwirkle/Resources/Images/dotnet_bot.png and b/Qwirkle/Qwirkle/Resources/Images/dotnet_bot.png differ