From 29dcfd8025c1f0727f5b6b5e960af2104d2a5598 Mon Sep 17 00:00:00 2001 From: haesoo-y Date: Wed, 22 Jan 2025 22:20:56 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EB=A9=94=EC=9D=B8=20=EC=9D=B4=EB=AF=B8?= =?UTF-8?q?=EC=A7=80=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/HomepageFeatures/index.tsx | 26 ++++----- src/pages/index.tsx | 2 +- static/img/design-pattern.svg | 1 + static/img/technical-writing.svg | 65 +++++++++++++++++++++++ static/img/unit-test.svg | 1 + 5 files changed, 78 insertions(+), 17 deletions(-) create mode 100644 static/img/design-pattern.svg create mode 100644 static/img/technical-writing.svg create mode 100644 static/img/unit-test.svg diff --git a/src/components/HomepageFeatures/index.tsx b/src/components/HomepageFeatures/index.tsx index 147585a..e4aef39 100644 --- a/src/components/HomepageFeatures/index.tsx +++ b/src/components/HomepageFeatures/index.tsx @@ -10,32 +10,26 @@ type FeatureItem = { const FeatureList: FeatureItem[] = [ { - title: "Easy to Use", - Svg: require("@site/static/img/undraw_docusaurus_mountain.svg").default, + title: "Design Pattern", + Svg: require("@site/static/img/design-pattern.svg").default, description: ( - <> - Docusaurus was designed from the ground up to be easily installed and - used to get your website up and running quickly. - + <>22개의 디자인 패턴을 정리하고, 각 패턴별로 예제를 통해 학습합니다. ), }, { - title: "Focus on What Matters", - Svg: require("@site/static/img/undraw_docusaurus_tree.svg").default, + title: "Technical Writing", + Svg: require("@site/static/img/technical-writing.svg").default, description: ( - <> - Docusaurus lets you focus on your docs, and we'll do the chores. Go - ahead and move your docs into the docs directory. - + <>명확하고 이해하기 쉬운 기술 문서를 작성하는 방법에 대해 학습합니다. ), }, { - title: "Powered by React", - Svg: require("@site/static/img/undraw_docusaurus_react.svg").default, + title: "Unit Test", + Svg: require("@site/static/img/unit-test.svg").default, description: ( <> - Extend or customize your website layout by reusing React. Docusaurus can - be extended while reusing the same header and footer. + 단위 테스트에 대한 기본기를 다지고, 올바른 테스트 케이스를 작성하는 + 방법을 학습합니다. ), }, diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 631b177..3b574a7 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -21,7 +21,7 @@ function HomepageHeader() { className="button button--secondary button--lg" to="/docs/intro" > - Getting Started + Go to Docs diff --git a/static/img/design-pattern.svg b/static/img/design-pattern.svg new file mode 100644 index 0000000..8bbfa08 --- /dev/null +++ b/static/img/design-pattern.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/img/technical-writing.svg b/static/img/technical-writing.svg new file mode 100644 index 0000000..c016a72 --- /dev/null +++ b/static/img/technical-writing.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/img/unit-test.svg b/static/img/unit-test.svg new file mode 100644 index 0000000..a51941c --- /dev/null +++ b/static/img/unit-test.svg @@ -0,0 +1 @@ + \ No newline at end of file