First Commit

This commit is contained in:
Benjamin Toby
2024-12-09 16:36:17 +01:00
parent f24b493566
commit b037cec100
128 changed files with 3281 additions and 193 deletions
+13
View File
@@ -0,0 +1,13 @@
import { HeaderLinkType } from "../(data)/links";
type Props = {
link: HeaderLinkType;
};
export default function HeaderLink({ link }: Props) {
return (
<a href={link.href} className="text-white hover:text-gray-300">
{link.name}
</a>
);
}
+18
View File
@@ -0,0 +1,18 @@
import { SocialLinksType } from "../(data)/links";
type Props = {
link: SocialLinksType;
};
export default function SocialLink({ link }: Props) {
return (
<a
href={link.href}
title={link.name}
className="text-white hover:text-gray-300"
target="_blank"
>
{link.icon}
</a>
);
}