Skip to content

Commit a2d956b

Browse files
author
whdjh
committed
✏️ 태그 a를 Link로 변경
1 parent 0870a35 commit a2d956b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/components/product/landing/Footer.tsx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import Email from 'public/images/img_email.svg';
33
import Facebook from 'public/ic/ic_facebook.svg';
44
import Instagram from 'public/ic/ic_instagram.svg';
55
import styles from './Footer.module.css';
6+
import Link from 'next/link';
67

78
export default function Footer() {
89
return (
@@ -13,27 +14,27 @@ export default function Footer() {
1314
<p>FAQ</p>
1415
</div>
1516
<div className={styles.footer_social}>
16-
<a
17+
<Link
1718
href="https://mail.google.com"
1819
target="_blank"
1920
rel="noopener noreferrer"
2021
>
2122
<Email className={styles.footer_icon} />
22-
</a>
23-
<a
23+
</Link>
24+
<Link
2425
href="https://www.facebook.com"
2526
target="_blank"
2627
rel="noopener noreferrer"
2728
>
2829
<Facebook className={styles.footer_icon} />
29-
</a>
30-
<a
30+
</Link>
31+
<Link
3132
href="https://www.facebook.com"
3233
target="_blank"
3334
rel="noopener noreferrer"
3435
>
3536
<Instagram className={styles.footer_icon} />
36-
</a>
37+
</Link>
3738
</div>
3839
</footer>
3940
);

src/components/product/landing/NavBar.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import Whitelogo from 'public/images/img_whitelogo.svg';
22
import Whitetextlogo from 'public/images/img_whitetextlogo.svg';
33
import Link from 'next/link';
4-
54
import styles from './NavBar.module.css';
65

76
export default function NavBar() {

0 commit comments

Comments
 (0)