Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify: User Introduce 데이터화 진행중 #14

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/pages/MyBlog/components/UserIntoroduce.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
import styled from 'styled-components';

export default function UserIntroduce() {
const USER_INTRODUCE_DATA = [
{
id: 1,
type: 'Default',
context: (
<IntroduceDefault>
사회를 발전시킬 수 있는 아이디어를 가진 사람들과 함께 꿈을 실현시키고
싶은 프론트엔드 개발자 조진목입니다.
</IntroduceDefault>
),
},
];

return (
<UserIntroduceWrap>
{USER_INTRODUCE_DATA[0].context}
<IntroduceDefault>
사회를 발전시킬 수 있는 아이디어를 가진{' '}
<IntroduceBold>
Expand Down