diff --git a/components/about.tsx b/components/about.tsx index 8c2b11b..b66ab85 100644 --- a/components/about.tsx +++ b/components/about.tsx @@ -90,6 +90,7 @@ export default function About() { I've built{" "} @@ -98,6 +99,7 @@ export default function About() { , a cool alternative to Linktree, and I'm currently developing{" "} diff --git a/components/contact.tsx b/components/contact.tsx index 9fc159b..5858313 100644 --- a/components/contact.tsx +++ b/components/contact.tsx @@ -115,6 +115,7 @@ export default function Contact() { @@ -123,6 +124,7 @@ export default function Contact() { @@ -130,6 +132,7 @@ export default function Contact() { @@ -137,6 +140,7 @@ export default function Contact() { @@ -144,6 +148,7 @@ export default function Contact() { diff --git a/components/footer.tsx b/components/footer.tsx index 28c7c5e..c5ccccc 100644 --- a/components/footer.tsx +++ b/components/footer.tsx @@ -41,12 +41,20 @@ export default function Footer() {

Made with ❤️ by{" "} - Frank Borisjuk + + Frank Borisjuk +

© 2024 - All rights reserved

Sources available on{" "} - + GitHub

diff --git a/components/navbar.tsx b/components/navbar.tsx index 8b0bec0..9413421 100644 --- a/components/navbar.tsx +++ b/components/navbar.tsx @@ -348,7 +348,9 @@ const Navbar = () => { - <Link href="/">HangerThem</Link> + <Link href="/" aria-label="HangerThem's Home Page"> + HangerThem + </Link> {
  • setNavState((prev) => ({ ...prev, activeTag: link.id })) @@ -376,7 +379,11 @@ const Navbar = () => { {socialLinks.map((socialLink) => ( - + {socialLink.icon} {socialLink.text} diff --git a/components/projects.tsx b/components/projects.tsx index 2557752..86697cc 100644 --- a/components/projects.tsx +++ b/components/projects.tsx @@ -269,6 +269,7 @@ const Projects = () => { href={project.href} target="_blank" title="View Project" + arial-label="View Project" > View Project @@ -277,6 +278,7 @@ const Projects = () => { href={project.source} target="_blank" title="View Source" + arial-label="View Source" > @@ -284,10 +286,10 @@ const Projects = () => { ))} - + - + diff --git a/components/skills.tsx b/components/skills.tsx index 8028c9e..13b0261 100644 --- a/components/skills.tsx +++ b/components/skills.tsx @@ -100,7 +100,7 @@ export default function Skills() { {skills.languages && ( -

    Languages

    +

    Languages

      {skills.languages.map((language, index) => (
    • @@ -115,7 +115,7 @@ export default function Skills() { )} {skills.programmingLanguages && ( -

      Programming Languages

      +

      Programming Languages

        {skills.programmingLanguages.map( (programmingLanguage, index) => ( @@ -132,7 +132,7 @@ export default function Skills() { )} {skills.technologies && ( -

        Technologies

        +

        Technologies

          {skills.technologies.map((technology, index) => (
        • @@ -147,7 +147,7 @@ export default function Skills() { )} {skills.tools && ( -

          Tools

          +

          Tools

            {skills.tools.map((tool, index) => (
          • diff --git a/styles/globalStyle.ts b/styles/globalStyle.ts index 9818989..303911e 100644 --- a/styles/globalStyle.ts +++ b/styles/globalStyle.ts @@ -56,4 +56,8 @@ export const GlobalStyle = createGlobalStyle` color: rgb(var(--primary), 0.8); } } + + .grecaptcha-badge { + visibility: hidden !important; +} `