Skip to content

Commit

Permalink
#3 failed to commit basehea and footer components
Browse files Browse the repository at this point in the history
  • Loading branch information
mvogelgesang committed Jan 7, 2023
1 parent 6861e2c commit ccaf499
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/components/BaseHead.astro
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ const { title, description = SITE_DESCRIPTION, image = '/placeholder-social.jpg'
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="icon" href="/favicon/favicon.ico" />
<link rel="apple-touch-icon" href="/favicon/apple-touch-icon.png">
<meta name="theme-color" content="#4a6751"/>
<link rel="manifest" href="/favicon/site.webmanifest" />

<meta name="generator" content={Astro.generator} />
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import FooterLink from "./FooterLink.astro";
{
SOCIAL_MEDIA.map((item) => {
return (
<FooterLink href={item.url} class="footer-nav-link">
<FooterLink href={item.url} class="footer-nav-link" aria-label={item.name}>
<i class={item.icon + ' fa-xl'}/>
</FooterLink>
)})
Expand Down

0 comments on commit ccaf499

Please sign in to comment.