Skip to content

Commit 92e09cb

Browse files
committed
properly align kofi icon to centre
1 parent ec5c61e commit 92e09cb

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/(home)/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import Link from "next/link";
22

33
export default function HomePage() {
44
return (
5-
<div className="flex flex-col justify-center text-center flex-1 prose">
5+
<div className="flex flex-col justify-center text-center flex-1 prose items-center">
66
<h1 className="text-2xl font-bold">Welcome to Overextended</h1>
77

88
<a href="https://ko-fi.com/thelindat">
9-
<img src="/static/kofi.png" className="w-40 m-auto" />
9+
<img src="/static/kofi.png" className="w-40" />
1010
</a>
1111

1212
<Link href="/docs">Continue to Documentation →</Link>

next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3-
import "./.next/dev/types/routes.d.ts";
3+
import "./.next/types/routes.d.ts";
44

55
// NOTE: This file should not be edited
66
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

0 commit comments

Comments
 (0)