Updated obfuscation in hero section

This commit is contained in:
2025-12-18 20:59:35 +01:00
parent f26edad96e
commit 296a17ebbc
2 changed files with 12 additions and 18 deletions

View File

@@ -1,24 +1,19 @@
import React, { useState } from 'react';
import React from 'react';
export const ObfuscatedMail = ({ email, className, children, title }) => {
// Start with a dummy link so bots don't see 'mailto:'
const [href, setHref] = useState("#");
// Only reveal the real email when the user hovers or focuses
const reveal = () => {
setHref(`mailto:${email}`);
const handleClick = (e) => {
e.preventDefault();
window.location.href = `mailto:${email}`;
};
return (
<a
href={href}
onMouseEnter={reveal}
onFocus={reveal}
onClick={reveal}
<button
onClick={handleClick}
className={className}
title={title || "Send email"}
type="button"
>
{children}
</a>
</button>
);
};