diff --git a/src/app/globals.css b/src/app/globals.css index 4f381e5..7aed9a5 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -95,10 +95,18 @@ table { background-color: white; padding-left: 40px; padding-right: 40px; + position: relative; } & .file { display: flex; gap: 10px; flex-wrap: wrap; } + & .easteregg { + position: absolute; + height: 20px; + width: 100%; + left: 0px; + backdrop-filter: blur(10px); + } } diff --git a/src/components/recruitments/RecruitmentsTable.tsx b/src/components/recruitments/RecruitmentsTable.tsx index 33e4eae..5e9a339 100644 --- a/src/components/recruitments/RecruitmentsTable.tsx +++ b/src/components/recruitments/RecruitmentsTable.tsx @@ -13,8 +13,6 @@ function RecruitmentsTable({ ...rest }: RecruitmentsDetailTable) { working_hours, required_licenses, hiring_progress, - train_pay, - pay, benefits, military, submit_document, @@ -101,6 +99,14 @@ function RecruitmentsTable({ ...rest }: RecruitmentsDetailTable) { ); })} + + 모집일 + + {start_date && end_date + ? start_date + " ~ " + end_date + : "상시채용"} + + 최소성적 @@ -125,6 +131,14 @@ function RecruitmentsTable({ ...rest }: RecruitmentsDetailTable) { .join(" > ")} + + 실습 수당 + 이스터에그 입니다 ^^
+ + + 정규직 전환 시 + 안 보여 줄 거지롱~
+ 복지 {benefits || "-"} @@ -137,14 +151,6 @@ function RecruitmentsTable({ ...rest }: RecruitmentsDetailTable) { 제출 서류 {submit_document} - - 모집일 - - {start_date && end_date - ? start_date + " ~ " + end_date - : "상시채용"} - - 기타 {etc || "-"}