Skip to content

Commit

Permalink
Merge pull request #307 from themoment-team/feature/guide
Browse files Browse the repository at this point in the history
[Client] Add Guide
  • Loading branch information
yoosion030 committed Oct 10, 2023
2 parents 80e56ad + 097e0fa commit 53ebc5a
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
Binary file added packages/hello-gsm/public/절차_가이드.pdf
Binary file not shown.
4 changes: 4 additions & 0 deletions packages/hello-gsm/src/PageContainer/MainPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import {
} from 'shared/Date/firstScreening';
import { formatDate } from 'Utils/Format';
import { ApplicationDataType, EvaluationStatusType } from 'type/application';
import Link from 'next/link';

const contentSelects = [
'원서 작성',
Expand Down Expand Up @@ -186,6 +187,9 @@ const MainPage: NextPage<ApplicationDataType> = ({ data }) => {
</S.TermWrapper>
</div>
</div>
<S.GuideAnchor href="/절차_가이드.pdf" target="_blank" rel="noreferrer">
ℹ️ 입학 절차 확인하기
</S.GuideAnchor>
<BubbleButton link="/calculator/choose">
🧾 모의 성적 계산해보기
</BubbleButton>
Expand Down
24 changes: 24 additions & 0 deletions packages/hello-gsm/src/PageContainer/MainPage/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,30 @@ export const TermWrapper = styled.ul`
padding-left: 0.8125rem;
`;

export const GuideAnchor = styled.a`
${({ theme }) => theme.typo.h4}
position: absolute;
right: 10%;
padding: 1rem 1.5rem;
text-align: center;
background-color: #f3f3f3;
border-radius: 0.75rem;
cursor: pointer;
border: none;
color: ${({ theme }) => theme.color.black};
font-weight: 600;
top: 35rem;
&:hover {
background: rgba(243, 243, 243, 0.52);
transition: 0.3s;
}
@media ${device.mobile} {
display: none;
}
`;

export const ApplyTerm = styled.li`
${({ theme }) => theme.typo.h3}
font-weight: 400;
Expand Down

2 comments on commit 53ebc5a

@vercel
Copy link

@vercel vercel bot commented on 53ebc5a Oct 10, 2023

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

admin-hello-gsm – ./packages/hello-gsm-admin

admin-hello-gsm.vercel.app
admin-hello-gsm-git-main-the-moment.vercel.app
admin.hellogsm.kr
admin-hello-gsm-the-moment.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 53ebc5a Oct 10, 2023

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

hello-gsm – ./packages/hello-gsm

hello-gsm-git-main-the-moment.vercel.app
hello-gsm-the-moment.vercel.app
www.hellogsm.kr
hellogsm.kr

Please sign in to comment.