Skip to content

Commit

Permalink
chore: Uses image from next/image (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
gruyaume authored Dec 4, 2023
1 parent ad1fe03 commit 514bfe6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion components/Logo.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
import React, { FC } from "react";

import Image from "next/image";

const Logo: FC = () => {
return (
<a className="logo" href="/">
<div className="logo-tag">
<img
<Image
src="https://assets.ubuntu.com/v1/82818827-CoF_white.svg"
alt="circle of friends"
width={32}
height={32}
className="logo-image"
/>
</div>
Expand Down

0 comments on commit 514bfe6

Please sign in to comment.