diff --git a/blog/BlogPosts.tsx b/blog/BlogPosts.tsx index 94492b6..c73df95 100644 --- a/blog/BlogPosts.tsx +++ b/blog/BlogPosts.tsx @@ -9,37 +9,34 @@ export const BlogPosts = async (): Promise => { return (
-
- {posts.map((post, index) => { +
    + {posts.map((post) => { const postPublishedOn = date.format( new Date(post.frontmatter.publishedOn), "DD/MM/YYYY", ) return ( - - -

    - {post.frontmatter.title} -

    -

    - {postPublishedOn} -

    -

    - {post.frontmatter.description} -

    -
    - +
  • + + +

    + {post.frontmatter.title} +

    +

    + {postPublishedOn} +

    +

    + {post.frontmatter.description} +

    +
    + +
  • ) })} -
+
) } diff --git a/components/Header/index.tsx b/components/Header/index.tsx index f063e32..63e8825 100644 --- a/components/Header/index.tsx +++ b/components/Header/index.tsx @@ -17,7 +17,7 @@ export const Header = (): JSX.Element => {

-

- - {title} - -
- {htmlParser(description)} -

- +
+

+ {title} +

+

{htmlParser(description)}

+
) } diff --git a/components/Interests/index.tsx b/components/Interests/index.tsx index f3fe129..341e71f 100644 --- a/components/Interests/index.tsx +++ b/components/Interests/index.tsx @@ -16,8 +16,8 @@ export const Interests = (): JSX.Element => { return (
- {paragraphs.map((paragraph, index) => { - return + {paragraphs.map((paragraph) => { + return })}
diff --git a/components/OpenSource/Repository.tsx b/components/OpenSource/Repository.tsx index 21f3cfc..d7ac058 100644 --- a/components/OpenSource/Repository.tsx +++ b/components/OpenSource/Repository.tsx @@ -11,16 +11,18 @@ export const Repository = (props: RepositoryProps): JSX.Element => { const { name, description, href } = props return ( - +
  • -
    - - - {name} - -
    -

    {description}

    + +

    + + + {name} + +

    +

    {description}

    +
    - +
  • ) } diff --git a/components/OpenSource/index.tsx b/components/OpenSource/index.tsx index c37a40d..6ba54aa 100644 --- a/components/OpenSource/index.tsx +++ b/components/OpenSource/index.tsx @@ -10,7 +10,7 @@ export const OpenSource = (): JSX.Element => {

    {i18n.translate("home.open-source.description")}

    -
    +
      { description="The React Framework" href="https://github.com/vercel/next.js/commits?author=theoludwig" /> -
    + ) } diff --git a/components/Portfolio/PortfolioItem.tsx b/components/Portfolio/PortfolioItem.tsx index 2da7cbc..db5085f 100644 --- a/components/Portfolio/PortfolioItem.tsx +++ b/components/Portfolio/PortfolioItem.tsx @@ -13,7 +13,7 @@ export const PortfolioItem = (props: PortfolioItemProps): JSX.Element => { const { title, description, link, image } = props return ( - +
  • { href={link} aria-label={title} > -
    - {title} -
    -
    -

    - {title} -

    -

    {description}

    -
    + +
    + {title} +
    +
    +

    + {title} +

    +

    {description}

    +
    +
    - +
  • ) } diff --git a/components/Portfolio/index.tsx b/components/Portfolio/index.tsx index 331ea02..3b4e852 100644 --- a/components/Portfolio/index.tsx +++ b/components/Portfolio/index.tsx @@ -12,10 +12,10 @@ export const Portfolio = (): JSX.Element => { } return ( -
    - {items.map((item, index) => { - return +
      + {items.map((item) => { + return })} -
    + ) } diff --git a/components/Skills/Skill.tsx b/components/Skills/Skill.tsx index dd4b9e5..bc74e09 100644 --- a/components/Skills/Skill.tsx +++ b/components/Skills/Skill.tsx @@ -27,13 +27,13 @@ export const SkillComponent = (props: SkillComponentProps): JSX.Element => { } return ( - -
    +
  • + { src={getImage()} />

    {skill}

    -
  • - + + ) } diff --git a/components/Skills/SkillsSection.tsx b/components/Skills/SkillsSection.tsx index 6773ade..724c2ac 100644 --- a/components/Skills/SkillsSection.tsx +++ b/components/Skills/SkillsSection.tsx @@ -18,7 +18,7 @@ export const SkillsSection = (props: SkillsSectionProps): JSX.Element => { {title}

    -
    {children}
    + diff --git a/components/design/Section/index.tsx b/components/design/Section/index.tsx index 9778107..9e6a89f 100644 --- a/components/design/Section/index.tsx +++ b/components/design/Section/index.tsx @@ -57,8 +57,8 @@ export const Section = (props: SectionProps): JSX.Element => {

    ) : null}
    - -
    {children}
    + + {children}