full upgrade

This commit is contained in:
2026-01-07 23:13:25 +01:00
parent 4cd3f60c98
commit c5efd28383
23 changed files with 693 additions and 226 deletions

View File

@@ -90,7 +90,9 @@ const Contact = () => {
);
}
} catch (error) {
console.error("Error sending email:", error);
if (process.env.NODE_ENV === 'development') {
console.error("Error sending email:", error);
}
showEmailError(
"Network error. Please check your connection and try again.",
);
@@ -230,7 +232,7 @@ const Contact = () => {
transition={{ duration: 1, ease: [0.25, 0.1, 0.25, 1] }}
className="glass-card p-8 rounded-3xl bg-white/50 border border-white/70"
>
<h3 className="text-2xl font-bold text-stone-800 mb-6">
<h3 className="text-2xl font-bold text-gray-800 mb-6">
Send Message
</h3>
@@ -404,7 +406,7 @@ const Contact = () => {
) : (
<>
<Send size={20} />
<span>Send Message</span>
<span className="text-cream">Send Message</span>
</>
)}
</motion.button>