Skip to content

Commit 56ff3f8

Browse files
committed
Replace logo PNG with SVG and update Image component class
1 parent 0d8930b commit 56ff3f8

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

app/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import Image from "next/image";
44
import Link from "next/link";
5-
import Logo from "@/public/img/logo.png";
5+
import Logo from "@/public/img/logo.svg";
66
import Card from "@/components/Card";
77

88
import { SiGithub, SiDiscord } from "react-icons/si";
@@ -24,7 +24,7 @@ export default function Home() {
2424
return (
2525
<>
2626
<Header>
27-
<Image src={Logo} alt="" className="-mt-36"></Image>
27+
<Image src={Logo} alt="" className="-mt-36 size-64"></Image>
2828
<div className="flex flex-col items-center gap-2 text-center">
2929
<p className="font-mono text-gray-500 text-4xl">Hi, I&apos;m</p>
3030
<h1 className="font-extrabold text-gray-800 text-8xl sm:text-9xl">

public/img/logo.svg

Lines changed: 6 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)