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

Footer 안 스터디 신청 URL 정정 #196

Merged
merged 1 commit into from
Aug 8, 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
3 changes: 2 additions & 1 deletion components/footer-link-list.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { css, html } from "../html-css-utils.js";
import { APPLICATION_URL } from "../data.js";

class FooterLinkList extends HTMLElement {
constructor() {
Expand Down Expand Up @@ -79,7 +80,7 @@ class FooterLinkList extends HTMLElement {

<li>
<a
href="https://github.com/DaleStudy/leetcode-study/discussions/52"
href="${APPLICATION_URL}"
target="_blank"
aria-label="Apply for Algorithm study group participation"
>
Expand Down
37 changes: 36 additions & 1 deletion components/step-section.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { html, css } from "../html-css-utils.js";
import { APPLICATION_URL } from "../data.js";

class StepsSection extends HTMLElement {
constructor() {
Expand Down Expand Up @@ -38,7 +39,41 @@ class StepsSection extends HTMLElement {
createHtml() {
return html`
<section>
<slot></slot>
<ds-hero>스터디 참여방법</ds-hero>
<ds-step-list>
<ds-step step="1" icon-src="images/icon_step1.png">
<p slot="content">
현재 스터디 1기(2024년 4/21~8/10)가 진행중이에요. 8/11에 시작하는
다음 기수 스터디 참여를 원한다면
<ds-step-text-link link="${APPLICATION_URL}">
여기
</ds-step-text-link>
에서 신청할 수 있어요.
</p>
</ds-step>
<ds-step step="2" icon-src="images/icon_step2.png">
<p slot="content">
답안 제출과 확인은 깃허브를 통해 이루어져요. 스터디 전체
진행상황을 알고 싶다면
<ds-step-text-link
link="https://github.com/orgs/DaleStudy/projects/1"
>
프로젝트 보드
</ds-step-text-link>
를 통해 파악할 수 있어요.
</p>
</ds-step>
<ds-step step="3" icon-src="images/icon_step3.png">
<p slot="content">
매주 스터디 멤버들끼리
<ds-step-text-link link="https://discord.com/invite/6TwzdnW6ze">
디스코드
</ds-step-text-link>
에서 간단한 모임을 가져요. 멤버 간의 친밀감도 쌓고 해외 취업
관련한 유용한 정보도 공유하고 있어요.
</p>
</ds-step>
</ds-step-list>
</section>
`;
}
Expand Down
2 changes: 2 additions & 0 deletions data.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export const APPLICATION_URL =
"https://github.com/DaleStudy/leetcode-study/discussions/209";
40 changes: 1 addition & 39 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -188,45 +188,7 @@
</ds-participant-review-list>
</ds-participant-reviews-section>

<ds-steps-section id="steps-section">
<ds-hero>스터디 참여방법</ds-hero>
<ds-step-list>
<ds-step step="1" icon-src="images/icon_step1.png">
<p slot="content">
현재 스터디 1기(2024년 4/21~8/10)가 진행중이에요. 8/11에 시작하는
다음 기수 스터디 참여를 원한다면
<ds-step-text-link
link="https://github.com/DaleStudy/leetcode-study/discussions/209"
>
여기
</ds-step-text-link>
에서 신청할 수 있어요.
</p>
</ds-step>
<ds-step step="2" icon-src="images/icon_step2.png">
<p slot="content">
답안 제출과 확인은 깃허브를 통해 이루어져요. 스터디 전체 진행상황을
알고 싶다면
<ds-step-text-link
link="https://github.com/orgs/DaleStudy/projects/1"
>
프로젝트 보드
</ds-step-text-link>
를 통해 파악할 수 있어요.
</p>
</ds-step>
<ds-step step="3" icon-src="images/icon_step3.png">
<p slot="content">
매주 스터디 멤버들끼리
<ds-step-text-link link="https://discord.com/invite/6TwzdnW6ze">
디스코드
</ds-step-text-link>
에서 간단한 모임을 가져요. 멤버 간의 친밀감도 쌓고 해외 취업 관련한
유용한 정보도 공유하고 있어요.
</p>
</ds-step>
</ds-step-list>
</ds-steps-section>
<ds-steps-section id="steps-section"></ds-steps-section>

<ds-footer>
<ds-footer-link-list slot="footer-link-list"></ds-footer-link-list>
Expand Down