diff --git a/AppShell.xaml b/AppShell.xaml
index 4b2f94f..43389d9 100644
--- a/AppShell.xaml
+++ b/AppShell.xaml
@@ -5,7 +5,8 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:ShoopNCook"
xmlns:views="clr-namespace:ShoopNCook.Views"
- Shell.FlyoutBehavior="Disabled">
+ Shell.FlyoutBehavior="Disabled"
+ Shell.NavBarIsVisible="False">
+ Title="Profile Page"
+ ContentTemplate="{DataTemplate views:ProfilePage}"
+ Route="Profile" />
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/Images/arrow_back.svg b/Resources/Images/arrow_back.svg
new file mode 100644
index 0000000..a9950c9
--- /dev/null
+++ b/Resources/Images/arrow_back.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/Resources/Images/default_profile_picture.png b/Resources/Images/default_profile_picture.png
new file mode 100644
index 0000000..2120267
Binary files /dev/null and b/Resources/Images/default_profile_picture.png differ
diff --git a/Resources/Styles/Colors.xaml b/Resources/Styles/Colors.xaml
index 245758b..b78b571 100644
--- a/Resources/Styles/Colors.xaml
+++ b/Resources/Styles/Colors.xaml
@@ -41,4 +41,10 @@
#72ACF1
#A7CBF6
+ #f0e7e7
+ White
+
+ Black
+ #6d6d6d
+ #ff8988
\ No newline at end of file
diff --git a/Resources/Styles/Styles.xaml b/Resources/Styles/Styles.xaml
index dc4a034..0e66b7c 100644
--- a/Resources/Styles/Styles.xaml
+++ b/Resources/Styles/Styles.xaml
@@ -4,6 +4,17 @@
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
+
+
+
+
diff --git a/ShoopNCook.csproj b/ShoopNCook.csproj
index 05d3006..a2a4c04 100644
--- a/ShoopNCook.csproj
+++ b/ShoopNCook.csproj
@@ -48,12 +48,23 @@
+
+
+
+
+
+
+
+
+
-
+
+ MSBuild:Compile
+
diff --git a/Views/ProfilePage.xaml b/Views/ProfilePage.xaml
new file mode 100644
index 0000000..4bb407d
--- /dev/null
+++ b/Views/ProfilePage.xaml
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Views/ProfilePage.xaml.cs b/Views/ProfilePage.xaml.cs
new file mode 100644
index 0000000..6102df7
--- /dev/null
+++ b/Views/ProfilePage.xaml.cs
@@ -0,0 +1,9 @@
+namespace ShoopNCook.Views;
+
+public partial class ProfilePage : ContentPage
+{
+ public ProfilePage()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file