Skip to content

Commit

Permalink
Merge pull request #73 from Funssion-SWM/develop
Browse files Browse the repository at this point in the history
Chore: 오타 및 이름 수정
  • Loading branch information
dongree authored Nov 17, 2023
2 parents 6bc9ed9 + 42e5490 commit 7874111
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 12 deletions.
6 changes: 3 additions & 3 deletions src/app/create/coverletter/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ export const metadata: Metadata = {
};

export default async function CreateCoverLetterPage() {
const headersList = headers();
const referer = headersList.get('referer');
referer === null && redirect(MAIN_PATH);
// const headersList = headers();
// const referer = headersList.get('referer');
// referer === null && redirect(MAIN_PATH);

const accessToken = cookies().get(ACCESS_TOKEN)?.value;
const refreshToken = cookies().get(REFRESH_TOKEN)?.value;
Expand Down
4 changes: 2 additions & 2 deletions src/components/covoerletter/CoverLetterContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function CoverLetterContainer({ coverletter }: Props) {

const [page, setPage] = useState(1);

const TITLE_STYLE = 'sm:text-xl font-semibold';
const TITLE_STYLE = 'sm:text-xl font-semibold my-1';
const ANSWER_STYLE = 'bg-soma-grey-20 w-full break-all p-4 rounded-xl';
return (
<div>
Expand Down Expand Up @@ -88,7 +88,7 @@ export default function CoverLetterContainer({ coverletter }: Props) {
</div>

<div className="flex flex-col gap-4">
<div className={TITLE_STYLE}>자기소개</div>
<div className={TITLE_STYLE}>공통 질문</div>
<div>
<div>1. 프로젝트 경험에 대해 자유롭게 서술해주세요.</div>
<p className={ANSWER_STYLE}>{answer1}</p>
Expand Down
8 changes: 5 additions & 3 deletions src/components/create/coverletter/CoverLetterForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { useRouter } from 'next/navigation';
import { developmentAreaOptions, stackOptions } from '@/utils/const';
import { ModalContext } from '@/context/ModalProvider';

const TITLE_STYLE = 'sm:text-xl font-semibold';
const TITLE_STYLE = 'sm:text-xl font-semibold my-1';

const TEXTAREA_STYLE =
'bg-soma-grey-20 w-full resize-none h-32 break-all p-4 outline-none rounded-xl';
Expand Down Expand Up @@ -274,8 +274,8 @@ export default function CoverLetterForm({ userId }: Props) {
</div>

<div>
<div className={TITLE_STYLE}>자기소개</div>
<div>
<div className={TITLE_STYLE}>한 줄 소개</div>
<div>
<input
type="text"
Expand All @@ -295,7 +295,9 @@ export default function CoverLetterForm({ userId }: Props) {
/>
<div className="text-end text-sm">{introduce.length}/50</div>
</div>

</div>
<div>
<div className={TITLE_STYLE}>공통 질문</div>
<div>
1. 프로젝트 경험에 대해 자유롭게 서술해주세요. (최대 500자)
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/create/coverletter/CoverLetterPage2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function CoverLetterPage2({
<div>
<div className="flex">
<h2 className="text-xl font-semibold sm:mb-[22.5px]">
자유롭게 자신을 어필해해보세요!
자유롭게 자신을 어필해보세요!
</h2>
</div>

Expand Down
4 changes: 2 additions & 2 deletions src/components/landing/LandingContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@ export default function LandingContainer() {
<div className="sm:mr-14 w-full sm:w-auto px-4">
<Image src={wheel} alt="wheel" className="w-[30px] sm:w-9 mt-5" />
<p className="text-2xl sm:text-4xl font-bold leading-tight mb-5">
신속하고 정확한
신속하고 편리한
<br />
채용 연계 서비스
채용 도우미 서비스
</p>
<p className="text-sm sm:text-xl font-normal">
원하는 직무의 구직자를 인포럼에서 찾아보세요!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ export default function SearchUserForJobContainer() {
onClick={() => {
open('나가시겠습니까?', () => {
router.push('/series');
router.refresh();
});
}}
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/shared/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export default function Header({
href="/search/user-for-job"
className="text-soma-blue-40 text-sm font-semibold hover:text-soma-blue-50 transition-all"
>
구직자 찾기
구직 희망자 찾기
</Link>
)}
{/* <div className="relative">
Expand Down

0 comments on commit 7874111

Please sign in to comment.