Skip to content

Commit da2a605

Browse files
authored
[UI] ButtonComponent 적용, Breadcrumb 생성 (#136)
* [task/122] ButtonComponent 적용 * [task/121] Breadcrumb 생성 * 포맷팅 수정 * GitHub Copilot 리뷰에 맞춰 추가 수정
1 parent dd279a1 commit da2a605

28 files changed

Lines changed: 176 additions & 82 deletions

index.html

Lines changed: 2 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -44,57 +44,6 @@
4444
class="dark:bg-gray-dark-100 fixed top-0 z-40 hidden h-screen w-full flex-none overflow-x-hidden overflow-y-auto bg-[#f9f9fa] md:sticky md:top-12 md:z-auto md:block md:h-[calc(100vh-64px)] md:w-[320px]"
4545
>
4646
<div class="dark:bg-gray-dark-100 z-50 w-full p-4 md:block">
47-
<div id="nav__get-started" class="px-2 py-2 text-black">
48-
<div class="flex w-full items-center justify-between">
49-
<a
50-
class="flex items-center font-light text-black hover:text-blue-500 md:text-base dark:hover:text-blue-500"
51-
href="#/get-started"
52-
>
53-
<span class="m-0 p-0 pr-2">
54-
<svg
55-
xmlns="http://www.w3.org/2000/svg"
56-
viewBox="0 0 512 512"
57-
width="12"
58-
height="12"
59-
>
60-
<path
61-
d="M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 242.7-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7 288 32zM64 352c-35.3 0-64 28.7-64 64l0 32c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-32c0-35.3-28.7-64-64-64l-101.5 0-45.3 45.3c-25 25-65.5 25-90.5 0L125.5 352 64 352zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"
62-
/>
63-
</svg>
64-
</span>
65-
Get started
66-
</a>
67-
<button
68-
class="inline-flex h-7 w-7 items-center justify-center rounded hover:cursor-pointer hover:bg-gray-400 hover:dark:bg-gray-400"
69-
>
70-
<span>
71-
<svg
72-
xmlns="http://www.w3.org/2000/svg"
73-
viewBox="0 0 512 512"
74-
width="12"
75-
height="12"
76-
>
77-
<path
78-
d="M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 129.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"
79-
/>
80-
</svg>
81-
</span>
82-
<span class="hidden">
83-
<svg
84-
xmlns="http://www.w3.org/2000/svg"
85-
viewBox="0 0 512 512"
86-
width="12"
87-
height="12"
88-
>
89-
<path
90-
d="M233.4 105.4c12.5-12.5 32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L256 173.3 86.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l192-192z"
91-
/>
92-
</svg>
93-
</span>
94-
</button>
95-
</div>
96-
</div>
97-
<hr class="text-gray-light-200 dark:text-gray-dark-300 m-2" />
9847
<div
9948
id="nav__content"
10049
class="flex flex-col font-light text-black md:text-base"
@@ -671,13 +620,13 @@
671620
<!-- content: (마크다운 파일) 표시 공간 : 중간 부분 -->
672621
<div
673622
id="content"
674-
class="dark:bg-background-dark w-full min-w-0 bg-white p-8"
623+
class="dark:bg-background-dark w-full min-w-0 bg-white p-10"
675624
></div>
676625

677626
<!-- aside: 오른쪽 부분 사이드 -->
678627
<aside
679628
id="aside-toc"
680-
class="sticky top-12 h-full min-w-80 overflow-y-auto px-2 py-4 lg:block"
629+
class="sticky top-12 h-full min-w-70 overflow-y-auto px-2 py-4 lg:block"
681630
>
682631
<div id="toc" class="text-[14px] text-black font-bold"></div>
683632
</aside>

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
"prettier:check": "prettier --check \"{src,tests}/**/*.{js,jsx,ts,tsx,json,css,scss}\"",
1313
"prettier:write": "prettier --write \"{src,tests}/**/*.{js,jsx,ts,tsx,json,css,scss}\"",
1414
"type:check": "tsc",
15+
"fix:all": "npm run lint:fix && npm run prettier:write",
16+
"check:all": "npm run lint:check && npm run prettier:check && npm run type:check",
1517
"test": "vitest --run",
1618
"test:watch": "vitest"
1719
},

public/docs/get-started/docker-concepts/building-images/build-tag-and-publish-an-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,4 +206,4 @@ docker push my-username/my-image
206206

207207
이제 이미지를 빌드하고 게시하는 방법을 알았으니 Docker 빌드 캐시를 사용하여 빌드 프로세스 속도를 높이는 방법을 알아보겠습니다.
208208

209-
[Using the build cache](#/get-started/docker-concepts/building-images/using-the-build-cache)
209+
<button-component href="#/get-started/docker-concepts/building-images/using-the-build-cache" title="Using the build cache" />

public/docs/get-started/docker-concepts/building-images/understanding-image-layers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,4 +185,4 @@
185185

186186
대부분의 이미지 빌드는 `docker container commit`을 사용하지 않고, Dockerfile을 사용합니다. Dockerfile은 이러한 단계를 자동화합니다.
187187

188-
[Writing a Dockerfile](#/get-started/docker-concepts/building-images/writing-a-dockerfile)
188+
<button-component href="#/get-started/docker-concepts/building-images/writing-a-dockerfile" title="Writing a Dockerfile" />

public/docs/get-started/docker-concepts/building-images/using-the-build-cache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,4 +210,4 @@ Dockerfile을 작성하거나 편집할 때 불필요한 캐시 누락을 피하
210210

211211
이제 Docker 빌드 캐시를 효과적으로 사용하는 방법을 이해했으므로 다중 단계 빌드에 대해 알아볼 준비가 되었습니다.
212212

213-
[Multi-stage builds](#/get-started/docker-concepts/building-images/multi-stage-builds)
213+
<button-component href="#/get-started/docker-concepts/building-images/multi-stage-builds" title="Multi-stage builds" />

public/docs/get-started/docker-concepts/building-images/writing-a-dockerfile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,4 +138,4 @@ Dockerfile 작성에 대해 더 알아보려면 다음 리소스를 참조하세
138138

139139
이제 Dockerfile을 생성하고 기본 사항을 배웠으니, 이미지를 빌드하고 태그를 지정하며 푸시하는 방법을 배우십시오.
140140

141-
[Build, tag, and publish an image](#/get-started/docker-concepts/building-images/build-tag-and-publish-an-image)
141+
<button-component href="#/get-started/docker-concepts/building-images/build-tag-and-publish-an-image" title="Build, tag, and publish an image" />

public/docs/get-started/docker-concepts/running-containers/overriding-container-defaults.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,4 +200,4 @@ $ docker run -e POSTGRES_PASSWORD=secret postgres docker-entrypoint.sh -h localh
200200

201201
이제 컨테이너 기본값을 재정의하는 방법을 알아보았으니, 컨테이너 데이터를 유지하는 방법을 알아보겠습니다.
202202

203-
[Persisting container data](#/get-started/docker-concepts/running-containers/persisting-container-data)
203+
<button-component href="#/get-started/docker-concepts/running-containers/persisting-container-data" title="Persisting container data" />

public/docs/get-started/docker-concepts/running-containers/persisting-container-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,4 +158,4 @@ $ docker rm -f new-db
158158

159159
이제 컨테이너 데이터를 유지하는 법에 대해 알아보았으니, 로컬 파일을 컨테이너와 공유하는 방법을 알아볼 차례입니다.
160160

161-
[Sharing local files with containers](#/get-started/docker-concepts/running-containers/sharing-local-files)
161+
<button-component href="#/get-started/docker-concepts/running-containers/sharing-local-files" title="Sharing local files with containers" />

public/docs/get-started/docker-concepts/running-containers/publishing-ports.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,4 @@ services:
110110

111111
이제 컨테이너 포트를 공개하고 노출하는 방법을 이해했으니, 다음으로 컨테이너 기본값을 재정의하는 방법을 알아보겠습니다.
112112

113-
- [컨테이너 기본값 재정의](#/get-started/docker-concepts/running-containers/publishing-ports)
113+
<button-component href="#/get-started/docker-concepts/running-containers/publishing-ports" title="Overriding container defaults" />

public/docs/get-started/docker-concepts/running-containers/sharing-local-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,4 +171,4 @@ $ docker run -v HOST-DIRECTORY:/CONTAINER-DIRECTORY:rw nginx
171171
172172
이제 컨테이너와 로컬 파일을 공유하는 방법을 알았으니, 다중 컨테이너 애플리케이션에 대해 알아볼 차례입니다.
173173
174-
[Multi-container applications](#/get-started/docker-concepts/running-containers/multi-container-applications)
174+
<button-component href="/#/get-started/docker-concepts/running-containers/multi-container-applications" title="Multi-container applications" />

0 commit comments

Comments
 (0)