i hate and love eslint
All checks were successful
Deploy SSR / deploy (push) Successful in 1m22s

This commit is contained in:
Lee 2024-09-13 20:56:03 +01:00
parent 74dfc2faa0
commit 287facc7f8

@ -1,4 +1,3 @@
import NavbarButton from "@/components/navbar/navbar-button";
import Link from "next/link";
import { getBuildInformation } from "@/common/website-utils";
@ -29,7 +28,11 @@ export default function Footer() {
<div className="h-14 w-full flex items-center justify-center bg-secondary/95 divide-x divide-input">
{items.map((item, index) => {
return (
<Link className="px-2 text-pp hover:brightness-75" href={item.link}>
<Link
key={index}
className="px-2 text-pp hover:brightness-75"
href={item.link}
>
{item.name}
</Link>
);