This commit is contained in:
Benjamin Toby
2025-07-20 10:56:17 +01:00
parent b6a5982f02
commit 668b596402
13 changed files with 59 additions and 100 deletions
+4 -4
View File
@@ -1,13 +1,13 @@
import { HeaderLinkType } from "../(data)/links";
import { TWUI_LINK_LIST_LINK_OBJECT } from "@/components/lib/elements/LinkList";
type Props = {
link: HeaderLinkType;
link: TWUI_LINK_LIST_LINK_OBJECT;
};
export default function HeaderLink({ link }: Props) {
return (
<a href={link.href} className="text-white hover:text-gray-300">
{link.name}
<a href={link.url} className="text-white hover:text-gray-300">
{link.title}
</a>
);
}