diff --git a/frontend/presentation/src/main/java/com/takseha/presentation/ui/home/EditNicknameFragment.kt b/frontend/presentation/src/main/java/com/takseha/presentation/ui/home/EditNicknameFragment.kt
new file mode 100644
index 000000000..186cd0c39
--- /dev/null
+++ b/frontend/presentation/src/main/java/com/takseha/presentation/ui/home/EditNicknameFragment.kt
@@ -0,0 +1,60 @@
+package com.takseha.presentation.ui.home
+
+import android.os.Bundle
+import androidx.fragment.app.Fragment
+import android.view.LayoutInflater
+import android.view.View
+import android.view.ViewGroup
+import com.takseha.presentation.R
+
+// TODO: Rename parameter arguments, choose names that match
+// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
+private const val ARG_PARAM1 = "param1"
+private const val ARG_PARAM2 = "param2"
+
+/**
+ * A simple [Fragment] subclass.
+ * Use the [EditNicknameFragment.newInstance] factory method to
+ * create an instance of this fragment.
+ */
+class EditNicknameFragment : Fragment() {
+ // TODO: Rename and change types of parameters
+ private var param1: String? = null
+ private var param2: String? = null
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ arguments?.let {
+ param1 = it.getString(ARG_PARAM1)
+ param2 = it.getString(ARG_PARAM2)
+ }
+ }
+
+ override fun onCreateView(
+ inflater: LayoutInflater, container: ViewGroup?,
+ savedInstanceState: Bundle?
+ ): View? {
+ // Inflate the layout for this fragment
+ return inflater.inflate(R.layout.fragment_edit_nickname, container, false)
+ }
+
+ companion object {
+ /**
+ * Use this factory method to create a new instance of
+ * this fragment using the provided parameters.
+ *
+ * @param param1 Parameter 1.
+ * @param param2 Parameter 2.
+ * @return A new instance of fragment EditNicknameFragment.
+ */
+ // TODO: Rename and change types and number of parameters
+ @JvmStatic
+ fun newInstance(param1: String, param2: String) =
+ EditNicknameFragment().apply {
+ arguments = Bundle().apply {
+ putString(ARG_PARAM1, param1)
+ putString(ARG_PARAM2, param2)
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/frontend/presentation/src/main/res/layout/fragment_edit_nickname.xml b/frontend/presentation/src/main/res/layout/fragment_edit_nickname.xml
new file mode 100644
index 000000000..aef114dcd
--- /dev/null
+++ b/frontend/presentation/src/main/res/layout/fragment_edit_nickname.xml
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/frontend/presentation/src/main/res/values/strings.xml b/frontend/presentation/src/main/res/values/strings.xml
index 90fe3fc80..9f719cea3 100644
--- a/frontend/presentation/src/main/res/values/strings.xml
+++ b/frontend/presentation/src/main/res/values/strings.xml
@@ -8,9 +8,10 @@
대머리깃터디
\@boldgitudy
등록
+ %d/6
-
+
활동점수 %d점 | 랭킹 %d위
@@ -21,7 +22,6 @@
%s님에게 응원과 격려의 메세지를 남겨주세요!
-
- Hello blank fragment
+
\ No newline at end of file