diff --git a/mainpage/AppShell.xaml b/mainpage/AppShell.xaml
new file mode 100644
index 0000000..38c5eff
--- /dev/null
+++ b/mainpage/AppShell.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
diff --git a/mainpage/AppShell.xaml.cs b/mainpage/AppShell.xaml.cs
new file mode 100644
index 0000000..de97cd9
--- /dev/null
+++ b/mainpage/AppShell.xaml.cs
@@ -0,0 +1,9 @@
+namespace MauiApp1;
+
+public partial class AppShell : Shell
+{
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+}
diff --git a/mainpage/MainPage.xaml b/mainpage/MainPage.xaml
new file mode 100644
index 0000000..8a51c35
--- /dev/null
+++ b/mainpage/MainPage.xaml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mainpage/MainPage.xaml.cs b/mainpage/MainPage.xaml.cs
new file mode 100644
index 0000000..8024654
--- /dev/null
+++ b/mainpage/MainPage.xaml.cs
@@ -0,0 +1,13 @@
+namespace MauiApp1;
+
+public partial class MainPage : ContentPage
+{
+ int count = 0;
+
+ public MainPage()
+ {
+ InitializeComponent();
+ }
+
+}
+