Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

스터디 3기를 위한 웹사이트 컨텐츠 업데이트 #204

Merged
merged 1 commit into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions components/footer-link-list.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { css, html } from "../html-css-utils.js";
import { APPLICATION_URL, CONTRIBUTING_URL, FAQ_URL } from "../data.js";
import { APPLICATION_URL, CONTRIBUTING_URL, WIKI_URL } from "../data.js";

class FooterLinkList extends HTMLElement {
constructor() {
Expand Down Expand Up @@ -70,11 +70,11 @@ class FooterLinkList extends HTMLElement {
return html`<ul>
<li>
<a
href="${FAQ_URL}"
href="${WIKI_URL}"
target="_blank"
aria-label="Read the FAQ discussion on Algorithm study group"
aria-label="Read the Wiki page on Algorithm study group"
>
FAQ
Wiki
</a>
</li>

Expand Down
6 changes: 3 additions & 3 deletions components/steps-section.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ class StepsSection extends HTMLElement {
</ds-step>
<ds-step step="3" icon-src="images/icon_step3.png">
<p slot="content">
매주 스터디 멤버들끼리
Copy link
Contributor Author

@DaleSeo DaleSeo Nov 28, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

정기 모임이 사라졌기 때문에 워딩을 그에 맞게 수정했는데 더 좋은 워딩이 있으면 건의 부탁드립니다.

Shot 2024-11-28 at 10 20 57

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

자율적인 대화와 모임 이 부분이 저희의 모임 의도가 잘 드러나서 좋은 것 같습니다!

스터디 멤버 간에 친밀감을 쌓기 위해
<ds-step-text-link link="${DISCORD_URL}">
디스코드
</ds-step-text-link>
에서 간단한 모임을 가져요. 멤버 간의 친밀감도 쌓고 해외 취업
관련한 유용한 정보도 공유하고 있어요.
에서 자율적인 대화와 모임을 가져요. 함께 코딩 시험/면접 준비를
하고 해외 취업 관련한 유용한 정보도 공유하고 있어요.
</p>
</ds-step>
</ds-step-list>
Expand Down
5 changes: 2 additions & 3 deletions data.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
export const APPLICATION_URL =
"https://github.com/DaleStudy/leetcode-study/discussions/209";
"https://github.com/DaleStudy/leetcode-study/discussions/620";
export const DISCORD_URL = "https://dales.link/discord";
export const PROJECT_URL = "https://github.com/orgs/DaleStudy/projects/3";
Copy link
Contributor Author

@DaleSeo DaleSeo Nov 28, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@SamTheKorean @TonyKim9401 나중에 3기 프로젝트가 생성되면 요기 링크를 업데이트 부탁드릴께요.

export const CONTRIBUTING_URL =
"https://github.com/DaleStudy/leetcode-study/blob/main/CONTRIBUTING.md";
export const FAQ_URL =
"https://github.com/DaleStudy/leetcode-study/discussions/54";
export const WIKI_URL = "https://github.com/DaleStudy/leetcode-study/wiki";
export const ALGO_DALE_URL = "https://www.algodale.com/";
export const LINKED_IN_URL = "https://www.linkedin.com/in/daleseo/";
export const GITHUB_URL = "https://github.com/DaleStudy/leetcode-study";
Expand Down