diff --git a/frontend/src/components/SelectSupportModal.tsx b/frontend/src/components/SelectSupportModal.tsx
index fb3aaddba..c991b25f0 100644
--- a/frontend/src/components/SelectSupportModal.tsx
+++ b/frontend/src/components/SelectSupportModal.tsx
@@ -23,11 +23,11 @@ const SelectSupportModal = ({ closeModal, handleSelectButton }: Props) => {
서포터를 선택해 주세요 ✅
선택한 서포터가 확인 후 리뷰를 진행합니다.
-
-
+
+
프론트엔드
-
+
백엔드
diff --git a/frontend/src/components/SupporterSelect/SupporterSelectItem/SupporterSelectItem.tsx b/frontend/src/components/SupporterSelect/SupporterSelectItem/SupporterSelectItem.tsx
index 7191b433a..6be197f6d 100644
--- a/frontend/src/components/SupporterSelect/SupporterSelectItem/SupporterSelectItem.tsx
+++ b/frontend/src/components/SupporterSelect/SupporterSelectItem/SupporterSelectItem.tsx
@@ -37,25 +37,25 @@ const SupporterSelectItem = ({
};
return (
-
+
- {name}
- {company}
+ {name}
+ {company}
- {technicalTags.map((tag) => (
-
+ {technicalTags.map((tag, index) => (
+
))}
- 완료한 리뷰
- {reviewCount}
+ 완료한 리뷰
+ {reviewCount}
-
+
github
@@ -66,6 +66,7 @@ const SupporterSelectItem = ({
fontSize="12px"
fontWeight={700}
onClick={handleSelectedSupporter}
+ ariaLabel={`${name} 선택하기`}
>
선택하기
diff --git a/frontend/src/components/common/Button.tsx b/frontend/src/components/common/Button.tsx
index fb94574c1..e7b81b4de 100644
--- a/frontend/src/components/common/Button.tsx
+++ b/frontend/src/components/common/Button.tsx
@@ -7,9 +7,10 @@ interface Props extends React.HTMLProps {
fontSize?: string | number;
fontWeight?: number;
type?: 'button' | 'submit' | 'reset';
+ ariaLabel?: string;
}
-const Button = ({ colorTheme, children, width, height, type, fontSize, fontWeight, onClick }: Props) => {
+const Button = ({ colorTheme, children, width, height, type, fontSize, fontWeight, onClick, ariaLabel }: Props) => {
return (
{children}
diff --git a/frontend/src/components/common/Modal.tsx b/frontend/src/components/common/Modal.tsx
index 2558f933d..05f527898 100644
--- a/frontend/src/components/common/Modal.tsx
+++ b/frontend/src/components/common/Modal.tsx
@@ -9,7 +9,7 @@ interface Props extends React.HTMLProps {
const Modal = ({ children, closeModal, width, height }: Props) => {
return createPortal(
-
+
{children}
diff --git a/frontend/src/pages/MainPage.tsx b/frontend/src/pages/MainPage.tsx
index bd8aa329c..8dcad1c24 100644
--- a/frontend/src/pages/MainPage.tsx
+++ b/frontend/src/pages/MainPage.tsx
@@ -27,7 +27,7 @@ const MainPage = () => {
*/}
-