Skip to content

Commit

Permalink
feat/#17 : AiOption 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
shinythinking committed Feb 18, 2025
1 parent 4a0a3de commit 9f0c7a3
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.boostcamp.mapisode.home.common

data class AiOption(
val image: String,
val text: String,
val prompt: String,
)
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,27 @@ object HomeConstant {
const val MOCK_IMAGE_URL =
"https://github.com/user-attachments/assets/411506ef-5fbf-4c6b-b68d-d00343a0b50e"
const val MAX_NUM_OF_PHOTOS = 4
const val NUM_OF_COLUMNS = 2
val options = persistentListOf(
AiOption(
image = "https://avatars.githubusercontent.com/u/127717111?v=4",
text = "Option 1",
prompt = "Prompt 1"
),
AiOption(
image = "https://avatars.githubusercontent.com/u/127717111?v=4",
text = "Option 2",
prompt = "Prompt 2"
),
AiOption(
image = "https://avatars.githubusercontent.com/u/127717111?v=4",
text = "Option 3",
prompt = "Prompt 3"
),
AiOption(
image = "https://avatars.githubusercontent.com/u/127717111?v=4",
text = "Option 4",
prompt = "Prompt 4"
),
)
}

0 comments on commit 9f0c7a3

Please sign in to comment.