diff --git a/riroan/src/App.js b/riroan/src/App.js index ead6dd4..3cf148e 100644 --- a/riroan/src/App.js +++ b/riroan/src/App.js @@ -11,6 +11,7 @@ import TechStack from './components/TechStack' import Refer from './components/Refer' import Ul from './components/Ul' import './App.css' +import Link from './components/Link' export default function App() { const [visible, setVisible] = useState(true) @@ -353,25 +354,36 @@ export default function App() {

CONTACT WITH ME

- 이메일 -
- 블로그 -
- 인스타그램 -
- 깃허브 -
- 링크드인 -
- 백준 -
- 솔브드 -
- 코드포스 -
- 앳코더 -
- 탑코더 + + 이메일 + + + 블로그 + + + 인스타그램 + + + 깃허브 + + + 링크드인 + + + 백준 + + + 솔브드 + + + 코드포스 + + + 앳코더 + + + 탑코더 +
) diff --git a/riroan/src/components/Link/Link.js b/riroan/src/components/Link/Link.js new file mode 100644 index 0000000..89afdce --- /dev/null +++ b/riroan/src/components/Link/Link.js @@ -0,0 +1,14 @@ +import React from 'react' +import styles from './Link.module.css' +import Assist from '../Assist' + +export default function Link(props) { + return ( +
+ {props.children}{' '} + + {props.desc} + +
+ ) +} diff --git a/riroan/src/components/Link/Link.module.css b/riroan/src/components/Link/Link.module.css new file mode 100644 index 0000000..43fcd3f --- /dev/null +++ b/riroan/src/components/Link/Link.module.css @@ -0,0 +1,6 @@ +.container { + font-size: 20px; + padding-left: 5px; + letter-spacing: -0.04ch; + margin-bottom: 5px; +} diff --git a/riroan/src/components/Link/index.js b/riroan/src/components/Link/index.js new file mode 100644 index 0000000..f2c23a5 --- /dev/null +++ b/riroan/src/components/Link/index.js @@ -0,0 +1,3 @@ +import Link from './Link' + +export default Link