1
0
mirror of https://github.com/theoludwig/theoludwig.git synced 2026-05-06 13:48:12 +02:00

build(deps): update latest

This commit is contained in:
2026-05-06 13:40:51 +02:00
parent 3ee53e84f6
commit 332b1e69c2
15 changed files with 1881 additions and 1905 deletions
@@ -11,12 +11,12 @@ export const AboutItem: React.FC<AboutItemProps> = (props) => {
<li className="flex items-center justify-between sm:justify-start">
<strong className="w-24 text-sm text-black lg:w-32 dark:text-white">{label}</strong>
<span className="block text-sm font-normal text-black dark:text-gray-lighter">
{link != null ? (
{link == null ? (
value
) : (
<a className="hover:underline" href={link}>
{value}
</a>
) : (
value
)}
</span>
</li>