Skip to content

Commit 65057c7

Browse files
committed
튜토리얼 등록하러 가기 버튼 추가
1 parent 759eb6b commit 65057c7

File tree

1 file changed

+26
-6
lines changed

1 file changed

+26
-6
lines changed

src/pages/Program/tutorial.tsx

Lines changed: 26 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,32 @@ const Tutorial = () => {
88

99
return (
1010
<Page title={t("튜토리얼")}>
11-
<h1>{t("튜토리얼")}</h1>
11+
<h1>
12+
<div style={{ display: 'flex', justifyContent: 'flex-start', alignItems: 'center' }}>
13+
{t("튜토리얼")} &nbsp;
14+
<GoToRegistrationButtonContainer href="https://event-us.kr/pythonkorea/event/94452" target="_blank" rel="noreferrer">
15+
<GoToRegistrationButton>지금 등록하러 가기!</GoToRegistrationButton>
16+
</GoToRegistrationButtonContainer>
17+
</div>
18+
</h1>
1219
<div>
1320
<p>
14-
<h2>튜토리얼이란?</h2>
21+
<h3>튜토리얼이란?</h3>
1522
튜토리얼은 초보자들을 위해, 또는 새로운 것을 접하는 사람들을 위해 진행하는 교육 프로그램입니다.<br />
1623
직접 컴퓨터를 가져와서 진행하며 현장에서 질문하고 해결하는 만큼 해당 기술에 대해 좀 더 깊게 알게됩니다.<br />
1724
</p>
1825

1926
<hr />
2027

2128
<p>
22-
<h2>튜토리얼 프로그램 소개</h2>
29+
<h3>튜토리얼 프로그램 소개</h3>
2330
<small>
2431
* 튜토리얼 프로그램은 오전 / 오후 두 타임으로 구성되어 있습니다. 신청 시 시간대가 겹치지 않도록 주의해주시기 바랍니다!
2532
</small>
2633
</p>
2734
<br />
2835
<p>
29-
<h3>오전 세션 <sup>[10:00 - 13:00]</sup></h3>
36+
<h4>오전 세션 <sup>[10:00 - 13:00]</sup></h4>
3037
<TutorialProgramDetails>
3138
<summary>FastAPI로 CRUD API 서버 만들기</summary>
3239
<div>
@@ -105,7 +112,7 @@ const Tutorial = () => {
105112
</p>
106113
<br />
107114
<p>
108-
<h3>오후 세션 <sup>[14:00 - 18:00]</sup></h3>
115+
<h4>오후 세션 <sup>[14:00 - 18:00]</sup></h4>
109116
<TutorialProgramDetails>
110117
<summary>Django ORM 톺아보기</summary>
111118
<div>
@@ -253,7 +260,7 @@ const Tutorial = () => {
253260
<hr />
254261

255262
<p>
256-
<h2>시간 &amp; 장소</h2>
263+
<h3>시간 &amp; 장소</h3>
257264
<ul>
258265
<li>시간 : 10:00 ~ 18:00</li>
259266
<li>장소 : 서울 서대문구 연희로 2길 62</li>
@@ -276,6 +283,19 @@ const Tutorial = () => {
276283

277284
export default Tutorial
278285

286+
const GoToRegistrationButtonContainer = styled.a`
287+
display: flex;
288+
justify-content: center;
289+
align-items: center;
290+
`
291+
292+
const GoToRegistrationButton = styled.button`
293+
font-size: 1rem;
294+
padding: 0.5rem 1rem;
295+
margin: 0;
296+
cursor: pointer;
297+
`
298+
279299
const TutorialProgramDetails = styled.details`
280300
margin: 0.5rem 0;
281301
padding: 0.5rem;

0 commit comments

Comments
 (0)