Skip to content

Commit

Permalink
keepgoing: Fix compile error in Logo
Browse files Browse the repository at this point in the history
  • Loading branch information
mac-cain13 committed Oct 22, 2024
1 parent 4f57fb1 commit 8bcf346
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion keepgoing/src/components/Intro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export function Intro() {
<>
<div>
<Link href="/">
<Logo className="inline-block h-8 w-auto" />
<Logo />
</Link>
</div>
<h1 className="mt-14 font-display text-4xl/tight font-light text-white">
Expand Down
2 changes: 1 addition & 1 deletion keepgoing/src/components/Logo.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useId } from 'react'
import Image, { type ImageProps } from 'next/image'
import Image from 'next/image'
import logo from '@/images/logo.png'

export function Logo() {
Expand Down

0 comments on commit 8bcf346

Please sign in to comment.