-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
207 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
import { Header } from '../../../Components/Header'; | ||
import * as _ from './style'; | ||
import { Icon } from '@team-return/design-system'; | ||
import { Link } from 'react-router-dom'; | ||
|
||
export function NoticeDetailPage() { | ||
return ( | ||
<> | ||
<Header /> | ||
<_.Wrapper> | ||
<_.Box> | ||
<_.ContentWrap> | ||
<_.HeaderWrap> | ||
<_.Title>[중요] 신입생 오리엔테이션 안내</_.Title> | ||
<_.IconBox> | ||
<_.IconWrapper> | ||
<Icon size={40} icon="Trash"></Icon> | ||
</_.IconWrapper> | ||
<_.IconWrapper> | ||
<Link to={'/Notice/Edit'}> | ||
<Icon | ||
size={40} | ||
icon="EditPencil" | ||
></Icon> | ||
</Link> | ||
</_.IconWrapper> | ||
</_.IconBox> | ||
</_.HeaderWrap> | ||
<_.Date>2024-03-09</_.Date> | ||
<_.Contents> | ||
신입생 오리엔테이션 책자에 있는 입학전 과제의 | ||
양식입니다. 첨부파일을 다운받아 사용하시고, 영어와 | ||
전공은 특별한 양식이 없으니 내용에 맞게 작성하여 | ||
학교 홈페이지에 제출하시기 바랍니다. 신입생 | ||
오리엔테이션 책자에 있는 입학전 과제의 양식입니다. | ||
첨부파일을 다운받아 사용하시고, 영어와 전공은 특별한 | ||
양식이 없으니 내용에 맞게 작성하여 학교 홈페이지에 | ||
제출하시기 바랍니다. 신입생 오리엔테이션 책자에 있는 | ||
입학전 과제의 양식입니다. 첨부파일을 다운받아 | ||
사용하시고, 영어와 전공은 특별한 양식이 없으니 | ||
내용에 맞게 작성하여 학교 홈페이지에 제출하시기 | ||
바랍니다.신입생 오리엔테이션 책자에 있는 입학전 | ||
과제의 양식입니다. 첨부파일을 다운받아 사용하시고, | ||
영어와 전공은 특별한 양식이 없으니 내용에 맞게 | ||
작성하여 학교 홈페이지에 제출하시기 바랍니다. 신입생 | ||
오리엔테이션 책자에 있는 입학전 과제의 양식입니다. | ||
첨부파일을 다운받아 사용하시고, 영어와 전공은 특별한 | ||
양식이 없으니 내용에 맞게 작성하여 학교 홈페이지에 | ||
제출하시기 바랍니다. | ||
</_.Contents> | ||
<_.FileBox> | ||
<_.File>첨부파일</_.File> | ||
<_.FileWrap> | ||
<_.Files> | ||
<_.FileTitle> | ||
2024학년도 신입생 과제.hwp | ||
</_.FileTitle> | ||
<Icon | ||
size={20} | ||
icon="Download" | ||
cursor="pointer" | ||
color="blue" | ||
></Icon> | ||
</_.Files> | ||
<_.Files> | ||
<_.FileTitle> | ||
2024학년도 신입생 과제.hwp | ||
</_.FileTitle> | ||
<Icon | ||
size={20} | ||
icon="Download" | ||
cursor="pointer" | ||
color="blue" | ||
></Icon> | ||
</_.Files> | ||
<_.Files> | ||
<_.FileTitle> | ||
2024학년도 신입생 과제.hwp | ||
</_.FileTitle> | ||
<Icon | ||
size={20} | ||
icon="Download" | ||
cursor="pointer" | ||
color="blue" | ||
></Icon> | ||
</_.Files> | ||
<_.Files> | ||
<_.FileTitle> | ||
2024학년도 신입생 과제.hwp | ||
</_.FileTitle> | ||
<Icon | ||
size={20} | ||
icon="Download" | ||
cursor="pointer" | ||
color="blue" | ||
></Icon> | ||
</_.Files> | ||
</_.FileWrap> | ||
</_.FileBox> | ||
</_.ContentWrap> | ||
</_.Box> | ||
</_.Wrapper> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
import styled from "styled-components"; | ||
|
||
export const Wrapper = styled.div` | ||
width: 100vw; | ||
min-width: 1400px; | ||
background: #fafafa; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
padding-top: 95px; | ||
padding-bottom: 11px; | ||
overflow: scroll; | ||
`; | ||
|
||
export const Box = styled.div` | ||
width: 1311px; | ||
height: 1000px; | ||
background-color: white; | ||
border: 1px solid #E5E5E5; | ||
display: flex; | ||
/* justify-content: center; */ | ||
`; | ||
|
||
export const ContentWrap = styled.div` | ||
display: flex; | ||
text-align: left; | ||
margin-top: 40px; | ||
margin-left: 62px; | ||
flex-direction: column; | ||
gap: 24px; | ||
margin-right: 62px; | ||
`; | ||
|
||
export const HeaderWrap = styled.div` | ||
display: flex; | ||
`; | ||
|
||
export const Title = styled.div` | ||
font-size: 32px; | ||
font-weight: 700; | ||
color: #333333; | ||
`; | ||
|
||
export const Date = styled.div` | ||
font-size: 24px; | ||
font-weight: 500; | ||
`; | ||
|
||
export const Contents = styled.div` | ||
font-size: 16px; | ||
`; | ||
|
||
export const IconWrapper = styled.div` | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
width: 60px; | ||
height: 60px; | ||
border-radius: 50%; | ||
border: 1px solid ; | ||
background-color: white; | ||
cursor: pointer; | ||
`; | ||
|
||
export const IconBox = styled.div` | ||
display: flex; | ||
gap: 12px; | ||
margin-left: auto; | ||
`; | ||
|
||
export const FileBox = styled.div` | ||
display: flex; | ||
width: 1187px; | ||
height: 118px; | ||
border-top: 2px solid #135C9D; | ||
border-bottom: 2px solid #135C9D; | ||
padding: 16px; | ||
gap: 24px; | ||
overflow: scroll; | ||
`; | ||
|
||
export const File = styled.div` | ||
font-size: 18px; | ||
font-weight: 500; | ||
`; | ||
|
||
export const FileWrap = styled.div` | ||
display: flex; | ||
flex-direction: column; | ||
gap: 10px; | ||
`; | ||
|
||
export const Files = styled.div` | ||
display: flex; | ||
justify-content: center; | ||
gap: 6px; | ||
`; | ||
|
||
export const FileTitle = styled.div` | ||
font-size: 18px; | ||
font-weight: 400; | ||
`; |