Update Dockerfile and Next.js configuration; enhance contact components
Some checks failed
CI/CD Pipeline / test (push) Successful in 10m55s
CI/CD Pipeline / security (push) Failing after 5m20s
CI/CD Pipeline / build (push) Has been skipped
CI/CD Pipeline / deploy (push) Has been skipped

- Modify Dockerfile to install curl without recommended packages for a leaner image.
- Update Next.js configuration to set outputFileTracingRoot for better Docker compatibility.
- Revise contact components to improve messaging and clarity, changing "Get In Touch" to "Contact Me" and enhancing descriptions for collaboration opportunities.
- Clean up Prisma schema by removing unnecessary comments and restructuring the Project model for clarity.
This commit is contained in:
2025-09-11 10:13:35 +02:00
parent 09d925745d
commit 519ca43168
6 changed files with 84 additions and 99 deletions

View File

@@ -93,10 +93,10 @@ const Contact = () => {
className="text-center mb-16"
>
<h2 className="text-4xl md:text-5xl font-bold mb-6 gradient-text">
Get In Touch
Contact Me
</h2>
<p className="text-xl text-gray-400 max-w-2xl mx-auto">
Have a project in mind or want to collaborate? I would love to hear from you!
Interested in working together or have questions about my projects? Feel free to reach out!
</p>
</motion.div>
@@ -111,11 +111,11 @@ const Contact = () => {
>
<div>
<h3 className="text-2xl font-bold text-white mb-6">
Let&apos;s Connect
Get In Touch
</h3>
<p className="text-gray-400 leading-relaxed">
I&apos;m always open to discussing new opportunities, interesting projects,
or just having a chat about technology and innovation.
I&apos;m always available to discuss new opportunities, interesting projects,
or simply chat about technology and innovation.
</p>
</div>

View File

@@ -216,7 +216,7 @@ const Hero = () => {
whileTap={{ scale: 0.95 }}
className="px-8 py-4 text-lg font-semibold border-2 border-gray-600 text-gray-300 hover:text-white hover:border-gray-500 rounded-lg transition-all duration-200"
>
Get In Touch
Contact Me
</motion.a>
</motion.div>