Add developer section with links to GitHub, GLM 4.6, and TRAE IDE

This commit is contained in:
Gemini AI
2025-12-20 02:38:03 +04:00
Unverified
parent bc1f385d9d
commit ff759bb622

View File

@@ -719,6 +719,48 @@ export default function HomePage() {
</Card>
)}
{/* Developer Section */}
<div className="mt-16 text-center py-8 border-t border-gray-200">
<div className="bg-gradient-to-r from-blue-50 to-purple-50 rounded-lg p-6 max-w-4xl mx-auto">
<h3 className="text-lg font-semibold text-gray-800 mb-4">Developed by Roman | RyzenAdvanced</h3>
<div className="flex flex-col md:flex-row justify-center items-center gap-6 text-sm text-gray-600">
<div className="flex items-center gap-2">
<span className="font-medium">GitHub:</span>
<a
href="https://github.com/roman-ryzenadvanced/Custom-Engineered-Agents-and-Tools-for-Vibe-Coders"
target="_blank"
rel="noopener noreferrer"
className="text-blue-600 hover:text-blue-800 underline"
>
Custom Engineered Agents and Tools for Vibe Coders
</a>
</div>
<div className="flex items-center gap-2">
<span className="font-medium">Tools:</span>
<a
href="https://z.ai/subscribe?ic=R0K78RJKNW"
target="_blank"
rel="noopener noreferrer"
className="text-green-600 hover:text-green-800 underline"
>
GLM 4.6 Coding Model
</a>
</div>
<div className="flex items-center gap-2">
<span className="font-medium">Built with:</span>
<a
href="https://www.trae.ai/s/WJtxyE"
target="_blank"
rel="noopener noreferrer"
className="text-purple-600 hover:text-purple-800 underline"
>
TRAE IDE
</a>
</div>
</div>
</div>
</div>
</div>
</div>