Skip to content

Commit 76c4ade

Browse files
committed
update content for season 3
1 parent 23ef45d commit 76c4ade

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

β€Žcomponents/footer-link-list.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { css, html } from "../html-css-utils.js";
2-
import { APPLICATION_URL, CONTRIBUTING_URL, FAQ_URL } from "../data.js";
2+
import { APPLICATION_URL, CONTRIBUTING_URL, WIKI_URL } from "../data.js";
33

44
class FooterLinkList extends HTMLElement {
55
constructor() {
@@ -70,11 +70,11 @@ class FooterLinkList extends HTMLElement {
7070
return html`<ul>
7171
<li>
7272
<a
73-
href="${FAQ_URL}"
73+
href="${WIKI_URL}"
7474
target="_blank"
75-
aria-label="Read the FAQ discussion on Algorithm study group"
75+
aria-label="Read the Wiki page on Algorithm study group"
7676
>
77-
FAQ
77+
Wiki
7878
</a>
7979
</li>
8080

β€Žcomponents/steps-section.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ class StepsSection extends HTMLElement {
6363
</ds-step>
6464
<ds-step step="3" icon-src="images/icon_step3.png">
6565
<p slot="content">
66-
맀주 μŠ€ν„°λ”” 멀버듀끼리
66+
μŠ€ν„°λ”” 멀버 간에 μΉœλ°€κ°μ„ μŒ“κΈ° μœ„ν•΄
6767
<ds-step-text-link link="${DISCORD_URL}">
6868
λ””μŠ€μ½”λ“œ
6969
</ds-step-text-link>
70-
μ—μ„œ κ°„λ‹¨ν•œ λͺ¨μž„을 κ°€μ Έμš”. 멀버 κ°„μ˜ μΉœλ°€κ°λ„ μŒ“κ³  ν•΄μ™Έ μ·¨μ—…
71-
κ΄€λ ¨ν•œ μœ μš©ν•œ 정보도 κ³΅μœ ν•˜κ³  μžˆμ–΄μš”.
70+
μ—μ„œ 자율적인 λŒ€ν™”μ™€ λͺ¨μž„을 κ°€μ Έμš”. ν•¨κ»˜ μ½”λ”© μ‹œν—˜/λ©΄μ ‘ μ€€λΉ„λ₯Ό
71+
ν•˜κ³  ν•΄μ™Έ μ·¨μ—… κ΄€λ ¨ν•œ μœ μš©ν•œ 정보도 κ³΅μœ ν•˜κ³  μžˆμ–΄μš”.
7272
</p>
7373
</ds-step>
7474
</ds-step-list>

β€Ždata.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
export const APPLICATION_URL =
2-
"https://github.com/DaleStudy/leetcode-study/discussions/209";
2+
"https://github.com/DaleStudy/leetcode-study/discussions/620";
33
export const DISCORD_URL = "https://dales.link/discord";
44
export const PROJECT_URL = "https://github.com/orgs/DaleStudy/projects/3";
55
export const CONTRIBUTING_URL =
66
"https://github.com/DaleStudy/leetcode-study/blob/main/CONTRIBUTING.md";
7-
export const FAQ_URL =
8-
"https://github.com/DaleStudy/leetcode-study/discussions/54";
7+
export const WIKI_URL = "https://github.com/DaleStudy/leetcode-study/wiki";
98
export const ALGO_DALE_URL = "https://www.algodale.com/";
109
export const LINKED_IN_URL = "https://www.linkedin.com/in/daleseo/";
1110
export const GITHUB_URL = "https://github.com/DaleStudy/leetcode-study";

0 commit comments

Comments
Β (0)