Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/entities/projects/ui/project-insert/ProjectPositionsCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ({
Expand Down
6 changes: 3 additions & 3 deletions src/widgets/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand All @@ -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",
Expand All @@ -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",
Expand Down