@@ -14,20 +14,21 @@ import {
1414 VisitorComment ,
1515} from "dev-portfolio" ;
1616import styled from "styled-components" ;
17+
1718import {
1819 CardInstruction ,
1920 Introduction ,
2021 TeckstackInputInstruction ,
2122 DisplayPortfolioInstruction ,
2223 VisitorCounterInstruction ,
24+ SkillInstruction ,
25+ ChannelInstruction ,
26+ ProgressBarInstruction ,
27+ ContactInstruction ,
2328} from "./common" ;
29+ import color from "./common/style/theme" ;
2430import useComment from "./hooks/useComment" ;
2531import "./App.css" ;
26- import color from "./common/style/theme" ;
27- import { SkillInstruction } from "./common/instruction/SkillInstruction" ;
28- import { ChannelInstruction } from "./common/instruction/ChannelInstruction" ;
29- import { ProgressBarInstruction } from "./common/instruction/ProgressBarInstruction" ;
30- import { ContactInstruction } from "./common/instruction/ContactInstruction" ;
3132
3233function App ( ) {
3334 /**
@@ -47,7 +48,6 @@ function App() {
4748 handleCreateComment,
4849 } = useComment ( ) ;
4950
50- const itemList = [ 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 ] ;
5151 return (
5252 /**
5353 * The 'className' in the <div> tag surrounding the components of 'dev-portfolio' must be 'App'.
@@ -102,7 +102,7 @@ function App() {
102102 { /**
103103 * Just introduction for dev-portfolio-app.
104104 *
105- * If you want view internal of Introduction,
105+ * If you want to view internal of Introduction,
106106 * go to the './src/common/instruction/Introduction.tsx'
107107 */ }
108108 < Introduction id = "['Manual Introduction', 'bx:home-smile']" />
@@ -119,14 +119,19 @@ function App() {
119119 />
120120
121121 { /**
122- * TechStackInput used only to find the logoName value in the TechStackList.
123- * @component TechStackInput
124- * {@link none}
122+ * Just introduction for TechStackInput component.
125123 *
126- * If you want view internal of TeckstackInputInstruction,
124+ * If you want to view internal of TeckstackInputInstruction,
127125 * go to the './src/common/instruction/TeckstackInputInstruction.tsx'
128126 */ }
129127 < TeckstackInputInstruction id = "['TechStackInput', 'fa:stack-overflow']" />
128+
129+ { /**
130+ * TechStackInput used only to find the logoName value in the TechStackList.
131+ *
132+ * @component TechStackInput
133+ * {@link none}
134+ */ }
130135 < TechStackInput />
131136
132137 { /**
@@ -189,14 +194,28 @@ function App() {
189194 ] }
190195 />
191196
197+ { /**
198+ * @component ProgressBar
199+ * {@link https://github.com/modern-agile-team/dev-portfolio#progressbar}
200+ *
201+ * If you want to view ProgressBar component,
202+ * go to the './src/common/instruction/ProgressBarInstruction.tsx'
203+ */ }
192204 < ProgressBarInstruction id = "['ProgressBar', 'ci:bar-chart-horizontal']" />
193205
206+ { /**
207+ * @component Skill
208+ * {@link https://github.com/modern-agile-team/dev-portfolio#skill}
209+ *
210+ * If you want to view Skill component,
211+ * go to the './src/common/instruction/SkillInstruction.tsx'
212+ */ }
194213 < SkillInstruction id = "['Skill', 'charm:stack']" />
195214
196215 { /**
197216 * Just introduction for Carousel, Gallery and Masonry.
198217 *
199- * If you want view internal of DisplayPortfolioInstruction,
218+ * If you want to view internal of DisplayPortfolioInstruction,
200219 * go to the './src/common/instruction/DisplayPortfolioInstruction.tsx'
201220 */ }
202221 < DisplayPortfolioInstruction />
@@ -218,7 +237,7 @@ function App() {
218237 * {@link https://github.com/modern-agile-team/dev-portfolio#gallery}
219238 */ }
220239 < Gallery id = "['Gallery', 'clarity:image-gallery-line']" >
221- { itemList . map ( ( idx ) => (
240+ { [ 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 ] . map ( ( idx ) => (
222241 < Item
223242 key = { idx }
224243 hoverdInnerBorderColor = { color . mainColor }
@@ -251,7 +270,7 @@ function App() {
251270 * @component VisitorCounter
252271 * {@link https://github.com/modern-agile-team/dev-portfolio#visitorcounter}
253272 *
254- * If you want view Card component,
273+ * If you want to view Card component,
255274 * go to the './src/common/instruction/VisitorCounterInstruction.tsx'
256275 */ }
257276 < VisitorCounterInstruction id = "['VisitorCounter', 'mdi:counter']" />
@@ -283,7 +302,7 @@ function App() {
283302 * @component Card
284303 * {@link https://github.com/modern-agile-team/dev-portfolio#card}
285304 *
286- * If you want view Card component,
305+ * If you want to view Card component,
287306 * go to the './src/common/instruction/CardInstruction.tsx'
288307 */ }
289308 < CardInstruction id = "['Card', 'bi:card-list']" />
@@ -294,13 +313,30 @@ function App() {
294313 */ }
295314 < Experience id = "['Experience', 'carbon:list-boxes']" theme = "vertical" />
296315
316+ { /**
317+ * @component Channel
318+ * {@link https://github.com/modern-agile-team/dev-portfolio#channel}
319+ *
320+ * @component Channels
321+ * {@link https://github.com/modern-agile-team/dev-portfolio#channels}
322+ *
323+ * If you want to view Channel and Channels component,
324+ * go to the './src/common/instruction/ChannelInstruction.tsx'
325+ */ }
297326 < ChannelInstruction id = "['Channel', 'fluent:channel-48-filled']" />
327+
328+ { /**
329+ * Just introduction for Contact.
330+ *
331+ * If you want to view internal of ContactInstruction,
332+ * go to the './src/common/instruction/ContactInstruction.tsx'
333+ */ }
334+ < ContactInstruction />
335+
298336 { /**
299337 * @component Contact
300338 * {@link https://github.com/modern-agile-team/dev-portfolio#contact}
301339 */ }
302-
303- < ContactInstruction />
304340 < Contact
305341 id = "['Contact', 'fluent:contact-card-20-regular']"
306342 titleColor = { color . pointColor }
0 commit comments