diff --git a/Qwirkle/Qwirkle/Pages/Leaderboard.xaml b/Qwirkle/Qwirkle/Pages/Leaderboard.xaml
index 9468012..f89a654 100644
--- a/Qwirkle/Qwirkle/Pages/Leaderboard.xaml
+++ b/Qwirkle/Qwirkle/Pages/Leaderboard.xaml
@@ -85,6 +85,10 @@
+
+
+
+
diff --git a/Qwirkle/Qwirkle/Views/TileCircle.xaml b/Qwirkle/Qwirkle/Views/TileCircle.xaml
new file mode 100644
index 0000000..d9bb719
--- /dev/null
+++ b/Qwirkle/Qwirkle/Views/TileCircle.xaml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Views/TileCircle.xaml.cs b/Qwirkle/Qwirkle/Views/TileCircle.xaml.cs
new file mode 100644
index 0000000..ced6aa4
--- /dev/null
+++ b/Qwirkle/Qwirkle/Views/TileCircle.xaml.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Qwirkle.Views;
+
+public partial class TileCircle : ContentView
+{
+ public TileCircle()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Views/TileRhombus.xaml b/Qwirkle/Qwirkle/Views/TileRhombus.xaml
new file mode 100644
index 0000000..b0f9fd4
--- /dev/null
+++ b/Qwirkle/Qwirkle/Views/TileRhombus.xaml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Views/TileRhombus.xaml.cs b/Qwirkle/Qwirkle/Views/TileRhombus.xaml.cs
new file mode 100644
index 0000000..c17abac
--- /dev/null
+++ b/Qwirkle/Qwirkle/Views/TileRhombus.xaml.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Qwirkle.Views;
+
+public partial class TileRhombus : ContentView
+{
+ public TileRhombus()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Views/TileSquare.xaml b/Qwirkle/Qwirkle/Views/TileSquare.xaml
new file mode 100644
index 0000000..f051735
--- /dev/null
+++ b/Qwirkle/Qwirkle/Views/TileSquare.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Views/TileSquare.xaml.cs b/Qwirkle/Qwirkle/Views/TileSquare.xaml.cs
new file mode 100644
index 0000000..95e5a00
--- /dev/null
+++ b/Qwirkle/Qwirkle/Views/TileSquare.xaml.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Qwirkle.Views;
+
+public partial class TileSquare : ContentView
+{
+ public TileSquare()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file