diff --git a/src/entities/projects/ui/project-insert/ProjectPositionsCard.tsx b/src/entities/projects/ui/project-insert/ProjectPositionsCard.tsx index 047909b..c7c9b29 100644 --- a/src/entities/projects/ui/project-insert/ProjectPositionsCard.tsx +++ b/src/entities/projects/ui/project-insert/ProjectPositionsCard.tsx @@ -26,17 +26,17 @@ interface ProjectPositionsCardProps { } const USER_ROLES = [ - { value: "frontend", label: "프론트엔드 개발자" }, - { value: "backend", label: "백엔드 개발자" }, - { value: "fullstack", label: "풀스택 개발자" }, - { value: "designer", label: "디자이너" }, - { value: "pm", label: "프로덕트 매니저" }, + { value: "프론트엔드 개발자", label: "프론트엔드 개발자" }, + { value: "백엔드 개발자", label: "백엔드 개발자" }, + { value: "풀스택 개발자", label: "풀스택 개발자" }, + { value: "디자이너", label: "디자이너" }, + { value: "프로덕트 매니저", label: "프로덕트 매니저" }, ]; const EXPERIENCE_OPTIONS = [ - { value: "junior", label: "주니어 (3년 이하)" }, - { value: "mid", label: "미들 (3년 이상 10년 이하)" }, - { value: "senior", label: "시니어 (10년 이상)" }, + { value: "주니어 (3년 이하)", label: "주니어 (3년 이하)" }, + { value: "미들 (3년 이상 10년 이하)", label: "미들 (3년 이상 10년 이하)" }, + { value: "시니어 (10년 이상)", label: "시니어 (10년 이상)" }, ]; const ProjectPositionsCard = ({ diff --git a/src/widgets/Footer/Footer.tsx b/src/widgets/Footer/Footer.tsx index 0d4697a..0047202 100644 --- a/src/widgets/Footer/Footer.tsx +++ b/src/widgets/Footer/Footer.tsx @@ -141,7 +141,7 @@ const FooterContent = styled(Box)(({ theme }) => ({ alignItems: "flex-start", justifyContent: "space-between", gap: theme.spacing(2), - [theme.breakpoints.down("sm")]: { + [theme.breakpoints.down(1200)]: { flexDirection: "column", alignItems: "flex-start", gap: theme.spacing(1), @@ -154,7 +154,7 @@ const LogoSection = styled(Box)(({ theme }) => ({ justifyContent: "space-between", gap: 8, height: "100%", - [theme.breakpoints.down("sm")]: { + [theme.breakpoints.down(1200)]: { alignItems: "center", width: "100%", flexDirection: "column", @@ -166,7 +166,7 @@ const InfoSection = styled(Box)(({ theme }) => ({ minWidth: 200, marginLeft: 16, marginTop: 52, - [theme.breakpoints.down("sm")]: { + [theme.breakpoints.down(1200)]: { marginTop: 0, marginLeft: 0, textAlign: "center",