Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
adase11 committed Oct 7, 2024
1 parent 93a89a4 commit e5dcb94
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@ jobs:
NODE_ENV: production
# Remove this line if you would like to skip using google analytics
NEXT_PUBLIC_GA_TRACKING_ID: G-M6H0YTT6ND
- name: Copy CNAME
shell: bash
run: cp public/CNAME out

- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
Expand Down
18 changes: 9 additions & 9 deletions src/components/Contact/ContactIcons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import data from '../../data/contact';

const ContactIcons = () => (
<ul className="icons">
{data.map((s) => (
<li key={s.label}>
<a href={s.link} aria-label={s.label}>
<FontAwesomeIcon icon={s.icon} />
<ul className="icons">
{data.map((s) => (
<li key={s.label}>
<a href={s.link} aria-label={s.label}>
<FontAwesomeIcon icon={s.icon} />
</a>
</li>
))}
</ul>
</li>
))}
</ul>
);

export default ContactIcons;
export default ContactIcons;

0 comments on commit e5dcb94

Please sign in to comment.