feat: Add X/Twitter contact button and update route names to English

This commit is contained in:
danielvici123
2025-05-16 01:12:47 +02:00
parent 8ec2dc6506
commit 9566cf1980
6 changed files with 100 additions and 25 deletions

28
app/coming_soon/page.tsx Normal file
View File

@@ -0,0 +1,28 @@
export default function ComingSoon() {
return (
<main className="min-h-screen p-8">
<div className="max-w-2xl mx-auto">
<h1 className="text-4xl font-bold mb-8 text-white">Coming Soon</h1>
<div className="bg-zinc-800 rounded-lg shadow-md p-6 space-y-8">
<div className="prose prose-invert max-w-none">
<p className="text-gray-300 mb-6">
This project is maintained and developed by <a href="https://github.com/danielvici" target="_blank" rel="noopener noreferrer" className="text-blue-500 hover:text-blue-600">me</a> as an individual developer.
New functions and tools will be added as time and inspiration allow.
</p>
<p className="text-gray-300 mb-6">
Since I develop this project in my free time, there is no fixed schedule for new features.
Instead, I add new tools and functions when I have a good idea and the time allows.
</p>
<p className="text-gray-300 mt-8">
If you have suggestions for new tools or features, you can submit them via GitHub
or contact <a href="https://x.com/danielvici123" target="_blank" rel="noopener noreferrer" className="text-blue-500 hover:text-blue-600">me</a> directly. I welcome any feedback and suggestions!
</p>
</div>
</div>
</div>
</main>
)
}