diff --git a/luckydiamond/src/assets/css/PagesStyles/adaptive-pages/profilemobile.css b/luckydiamond/src/assets/css/PagesStyles/adaptive-pages/profilemobile.css
new file mode 100644
index 0000000..9de21eb
--- /dev/null
+++ b/luckydiamond/src/assets/css/PagesStyles/adaptive-pages/profilemobile.css
@@ -0,0 +1,21 @@
+body {
+ overflow-y: scroll;
+}
+
+.content-grid__mobile-profile {
+ display: grid;
+ grid-auto-columns: 1fr;
+ grid-template-columns: repeat(4, 1fr);
+ grid-template-rows: repeat(7, 1fr);
+ grid-template-areas:
+ "header-mobile header-mobile header-mobile header-mobile"
+ "profile-mobile profile-mobile profile-mobile profile-mobile"
+ "profile-mobile profile-mobile profile-mobile profile-mobile"
+ "footer-mobile footer-mobile footer-mobile footer-mobile";
+ height: 100%;
+ width: 100%;
+}
+
+.profile-mobile {
+ grid-area: profile-mobile;
+}
diff --git a/luckydiamond/src/pages/adaptive-pages/ProfilemobilePage.vue b/luckydiamond/src/pages/adaptive-pages/ProfilemobilePage.vue
new file mode 100644
index 0000000..1ca28ee
--- /dev/null
+++ b/luckydiamond/src/pages/adaptive-pages/ProfilemobilePage.vue
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file