Skip to content

Commit

Permalink
chore : 초기응답에 아키텍처 추가, mark 태그 스타일 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry-Hong committed Jun 21, 2024
1 parent ec93ced commit a7797c6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const INITIAL_CHAT: TypeChat<'me'> = {
messages: [
{
contentType: 'PlainText',
content: '안녕하세요! FrontEnd Engineer 홍희림입니다.',
content: '<p>안녕하세요! <mark>FrontEnd Engineer 홍희림</mark>입니다.</p>',
},
{
contentType: 'PlainText',
Expand All @@ -22,6 +22,12 @@ export const INITIAL_CHAT: TypeChat<'me'> = {
],
},
},
{
contentType: 'ImageResponseCard',
imageResponseCard: {
buttons: [{ value: '시스템 구조', text: '어떻게 만들었어?' }],
},
},
],
},
};
9 changes: 9 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

mark {
background-color: transparent;
font-weight: bold;
background-image: linear-gradient(90deg, #7dd3fc, #6ee7b7);
background-position: bottom;
background-size: 100% 30%;
background-repeat: no-repeat;
}

0 comments on commit a7797c6

Please sign in to comment.