Updates
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user