Skip to content

Commit

Permalink
fix: lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
junkisai committed Oct 9, 2024
1 parent 7dbe75d commit b8e3623
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const Footer = () => {
return (
<footer className={styles.footer}>
<div className={styles.logoContainer}>
<Link href="/" className={styles.logo}>
<Link href="/">
<LiamLogoMark />
</Link>
<p className={styles.text}>&copy; 2024 Liam</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function TopCards({ posts, lang }: TopCardsProps) {
>
<div className={styles.topCard}>
{post.image && (
<div className={styles.imageContainer}>
<div>
<Image
src={post.image}
alt={`Image of ${post.title}`}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Lang } from '@/features/i18n'
import { MDXContent } from '@packages/mdx-components'
import { MDXContent } from '@/libs/contentlayer'
import { format, parseISO } from 'date-fns'
import { notFound } from 'next/navigation'
import type { FC } from 'react'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { type Lang, getTranslation } from '@/features/i18n'
import { MDXContent } from '@packages/mdx-components'
import { MDXContent } from '@/libs/contentlayer'
import type { Post } from 'contentlayer/generated'
import { compareDesc, format, parseISO } from 'date-fns'
import Link from 'next/link'
Expand Down

0 comments on commit b8e3623

Please sign in to comment.