From ea26e7612aaf8f0717effdcf82ccf5d873da4cac Mon Sep 17 00:00:00 2001 From: KangYongSu Date: Fri, 8 Dec 2023 08:38:29 +0900 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0242939..455deae 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # JOBIS-DSM-STUDENT-FE -πŸ’» μžλΉ„μŠ€ 학생 μ›ΉνŽ˜μ΄μ§€ μž…λ‹ˆλ‹€. +πŸ’» [μžλΉ„μŠ€ 학생 μ›ΉνŽ˜μ΄μ§€](https://jobis-student.team-return.com) μž…λ‹ˆλ‹€. From b756b872e5704077e31086ac7ae1088b98b9de61 Mon Sep 17 00:00:00 2001 From: KANGYONGSU23 Date: Fri, 8 Dec 2023 11:44:51 +0900 Subject: [PATCH 2/2] =?UTF-8?q?feat=20::=20=EB=B0=98=EC=9D=91=ED=98=95=20?= =?UTF-8?q?=EA=B0=9C=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/globals.css | 1 - src/app/layout.tsx | 32 +++++++++++++------------- src/app/recruitments/page.tsx | 4 ++-- src/components/Carousel.tsx | 12 ++++++---- src/components/common/Header.tsx | 2 +- src/components/common/TextFiled.tsx | 16 +++++++------ src/components/recruitments/filter.tsx | 4 ++-- 7 files changed, 37 insertions(+), 34 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index a901920..2400d63 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -41,7 +41,6 @@ html { body { min-height: 100vh; - width: 65vw; margin: auto; padding-top: 68px; } diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f4a30e0..26836da 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,25 +5,25 @@ import Provider from "@/components/Provider"; import SEOConfig from "@/components/SEO"; const notoSans = Noto_Sans_KR({ - weight: ["400", "500", "700"], - subsets: ["latin"], - display: "swap", + weight: ["400", "500", "700"], + subsets: ["latin"], + display: "swap", }); export default function RootLayout({ - children, + children, }: { - children: React.ReactNode; + children: React.ReactNode; }) { - return ( - - - - -
- {children} - - - - ); + return ( + + + + +
+ {children} + + + + ); } diff --git a/src/app/recruitments/page.tsx b/src/app/recruitments/page.tsx index 71cae14..5e2f3fe 100644 --- a/src/app/recruitments/page.tsx +++ b/src/app/recruitments/page.tsx @@ -5,8 +5,8 @@ import RecruitmentsCard from "@/components/recruitments/RecruitmentsCard"; export default function Recruitments() { return (
-
-
+
+

πŸ“„ λͺ¨μ§‘μ˜λ’°μ„œ

diff --git a/src/components/Carousel.tsx b/src/components/Carousel.tsx index 80383ab..f45ae37 100644 --- a/src/components/Carousel.tsx +++ b/src/components/Carousel.tsx @@ -52,13 +52,15 @@ export default function Banner() { return (
-
+
{BannerList.map((item, index) => (
(BannerRefs.current[index] = el)} onClick={() => { navigator.push(item.url); @@ -82,7 +84,7 @@ export default function Banner() { /> ))}
-
+
diff --git a/src/components/common/Header.tsx b/src/components/common/Header.tsx index 7fae175..2547886 100644 --- a/src/components/common/Header.tsx +++ b/src/components/common/Header.tsx @@ -18,7 +18,7 @@ function Header() { return (
joibs_logo diff --git a/src/components/common/TextFiled.tsx b/src/components/common/TextFiled.tsx index 104eace..40f4a8a 100644 --- a/src/components/common/TextFiled.tsx +++ b/src/components/common/TextFiled.tsx @@ -8,7 +8,7 @@ interface PropsType extends React.ComponentProps<"input"> { enterEvent?: () => void; onChange: (e: React.ChangeEvent) => void; label?: string; - width: string | number; + width?: string | number; height?: string | number; } @@ -23,6 +23,7 @@ function TextFiled({ height, label, type = "text", + className }: PropsType) { const [focus, setFocuse] = useState(false); const [isHidden, setIsHidden] = useState(true); @@ -32,7 +33,12 @@ function TextFiled({ }; return ( -
+
{label && (

{label}

)} @@ -79,11 +85,7 @@ function TextFiled({ className="flex justify-center items-center mr-[14px] cursor-pointer" onClick={enterEvent} > - +
)}
diff --git a/src/components/recruitments/filter.tsx b/src/components/recruitments/filter.tsx index af05fbc..604ad09 100644 --- a/src/components/recruitments/filter.tsx +++ b/src/components/recruitments/filter.tsx @@ -61,7 +61,7 @@ function Filter() { })); return ( -
+
);