Skip to content

Commit c61ced4

Browse files
authored
✨ 푸터에 버그 제보용 구글폼 추가 (#568)
### 📝 작업 내용 - 푸터에 버그 제보를 위한 구글폼 링크를 추가하였습니다.
1 parent 978c252 commit c61ced4

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

src/components/footer/Footer.tsx

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import { Bug, Mail } from 'lucide-react';
22

33
export const Footer = () => {
4+
const MAIL_ADDRESSS = '[email protected]';
5+
const BUG_REPORT_LINK = 'https://forms.gle/uwUU6Ccbwpbki5yt9';
6+
47
return (
58
<footer className="w-full border-t border-grey-200 bg-grey-100 p-6 text-grey-900">
69
<div className="flex flex-col justify-between gap-4">
@@ -15,10 +18,10 @@ export const Footer = () => {
1518
<span>Contact:</span>
1619
</div>
1720
<a
18-
href="mailto:[email protected]"
21+
href={`mailto:${MAIL_ADDRESSS}`}
1922
className="hover:text-blue-800 hover:underline"
2023
>
21-
24+
{MAIL_ADDRESSS}
2225
</a>
2326
</div>
2427

@@ -28,10 +31,12 @@ export const Footer = () => {
2831
<span>버그 제보:</span>
2932
</div>
3033
<a
31-
href="mailto:[email protected]"
34+
href={BUG_REPORT_LINK}
35+
target="_blank"
3236
className="hover:text-blue-800 hover:underline"
37+
rel="noreferrer"
3338
>
34-
39+
버그 리포트로 이동
3540
</a>
3641
</div>
3742
</div>

0 commit comments

Comments
 (0)