|
| 1 | +export default function MaintenancePage() { |
| 2 | + return ( |
| 3 | + <div className="w-full bg-black"> |
| 4 | + <div className="mx-auto w-full max-w-3xl border border-black bg-black p-8 shadow-2xl"> |
| 5 | + <header className="mb-8 text-center"> |
| 6 | + <h1 className="mb-2 text-4xl font-extrabold text-blue-400">모의가 아닌 진짜 수능</h1> |
| 7 | + <p className="text-lg text-gray-400">새로운 응시 방식 도입 및 홈페이지 리뉴얼 안내</p> |
| 8 | + </header> |
| 9 | + |
| 10 | + <section className="mb-8"> |
| 11 | + <h2 className="mb-4 border-l-4 border-blue-400 pl-4 text-2xl font-bold text-gray-200"> |
| 12 | + 응시 방식 변경 |
| 13 | + </h2> |
| 14 | + <div className="space-y-4 text-gray-300"> |
| 15 | + <p> |
| 16 | + 기존 시험지 지참 방식으로만 운영되던 「모의가 아닌 진짜 수능」이 시대인재 서바이벌 프로를 |
| 17 | + 도입하여 두 가지 응시 선택지를 제공합니다. |
| 18 | + </p> |
| 19 | + <ol className="list-inside list-decimal space-y-2 text-gray-400"> |
| 20 | + <li>개인 시험지 지참 방식</li> |
| 21 | + <li>서바이벌 프로 및 더 프리미엄 모의고사 응시</li> |
| 22 | + </ol> |
| 23 | + </div> |
| 24 | + </section> |
| 25 | + |
| 26 | + <hr className="my-8 border-gray-700" /> |
| 27 | + |
| 28 | + <section className="mb-8"> |
| 29 | + <h2 className="mb-4 border-l-4 border-blue-400 pl-4 text-2xl font-bold text-gray-200"> |
| 30 | + 접수 방법 및 안내 |
| 31 | + </h2> |
| 32 | + <div className="space-y-4 text-gray-300"> |
| 33 | + <p> |
| 34 | + 금일부터 홈페이지 리뉴얼 작업이 진행됨에 따라, 당분간은 선착순 사전 예약 신청 방식으로 |
| 35 | + 접수를 받습니다. |
| 36 | + </p> |
| 37 | + <div className="rounded-lg bg-gray-700 p-4 text-center shadow-inner"> |
| 38 | + <p className="mb-2 text-lg font-semibold text-gray-100">선착순 사전 예약 신청 링크</p> |
| 39 | + <a |
| 40 | + href="https://docs.google.com/forms/d/1wR4EWZn1uQTkNFkNdfsAUairlKgTwf4kFxvMS8SdJdI/viewform" |
| 41 | + className="inline-block transform rounded-full bg-blue-500 px-6 py-2 font-bold text-white transition-colors duration-300 hover:scale-105 hover:bg-blue-600" |
| 42 | + target="_blank" |
| 43 | + > |
| 44 | + 예약 신청 바로가기 |
| 45 | + </a> |
| 46 | + </div> |
| 47 | + </div> |
| 48 | + </section> |
| 49 | + |
| 50 | + <hr className="my-8 border-gray-700" /> |
| 51 | + |
| 52 | + <section className="mb-8"> |
| 53 | + <h2 className="mb-4 border-l-4 border-blue-400 pl-4 text-2xl font-bold text-gray-200">향후 일정</h2> |
| 54 | + <div className="space-y-4 text-gray-300"> |
| 55 | + <ul className="list-inside list-disc space-y-2 text-gray-400"> |
| 56 | + <li>홈페이지 리뉴얼 완료 후, 예약자분들께 문자로 상세 안내가 발송될 예정입니다.</li> |
| 57 | + <li>기존 신청자분들께도 별도의 안내 문자가 발송됩니다.</li> |
| 58 | + </ul> |
| 59 | + </div> |
| 60 | + </section> |
| 61 | + |
| 62 | + <hr className="my-8 border-gray-700" /> |
| 63 | + |
| 64 | + <footer className="text-center text-gray-400"> |
| 65 | + <p className="mb-2">더 자세한 내용은 아래 채널을 통해 확인해 주세요.</p> |
| 66 | + <div className="flex justify-center space-x-4"> |
| 67 | + <a |
| 68 | + href="https://pf.kakao.com/_xhHxjxin" |
| 69 | + className="text-blue-400 transition-colors duration-300 hover:text-blue-300" |
| 70 | + > |
| 71 | + 카카오톡 채널 |
| 72 | + </a> |
| 73 | + <a |
| 74 | + href="https://www.instagram.com/mosu2627" |
| 75 | + className="text-blue-400 transition-colors duration-300 hover:text-blue-300" |
| 76 | + > |
| 77 | + 공식 인스타그램 |
| 78 | + </a> |
| 79 | + </div> |
| 80 | + </footer> |
| 81 | + </div> |
| 82 | + </div> |
| 83 | + ); |
| 84 | +} |
0 commit comments