feat: implement email sending functionality with nodemailer; add contact form handling and success/error notifications

This commit is contained in:
2025-02-04 21:12:13 +01:00
parent 2c9f69dcac
commit 05f879d226
7 changed files with 199 additions and 22 deletions

View File

@@ -183,4 +183,17 @@ body {
.animate-fly-in {
animation: flyIn 1s ease-in-out;
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.animate-fade-out {
animation: fadeOut 3s forwards;
}