Update API key modal and footer links to use Together AI

This commit is contained in:
Riccardo Giorato
2025-12-22 20:29:47 +01:00
parent 3731e3f476
commit 62645297c8
4 changed files with 89 additions and 57 deletions
+8 -7
View File
@@ -1,12 +1,13 @@
import { Github } from "lucide-react"
import Link from "next/link"
import { TOGETHER_LINK } from "@/lib/utils";
import { Github } from "lucide-react";
import Link from "next/link";
function XIcon({ className }: { className?: string }) {
return (
<svg viewBox="0 0 24 24" fill="currentColor" className={className}>
<path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
)
);
}
export function Footer() {
@@ -16,7 +17,7 @@ export function Footer() {
<span>
Made & powered by{" "}
<Link
href="https://together.ai"
href={TOGETHER_LINK}
target="_blank"
rel="noopener noreferrer"
className="hover:text-white transition-colors text-white"
@@ -27,7 +28,7 @@ export function Footer() {
</div>
<div className="flex items-center gap-3">
<Link
href="https://github.com/makecomics/makecomics"
href="https://github.com/nutlope/make-comics"
target="_blank"
rel="noopener noreferrer"
className="hover:text-white transition-colors"
@@ -35,7 +36,7 @@ export function Footer() {
<Github className="w-3.5 h-3.5" />
</Link>
<Link
href="https://x.com/makecomics"
href="https://x.com/nutlope"
target="_blank"
rel="noopener noreferrer"
className="hover:text-white transition-colors"
@@ -44,5 +45,5 @@ export function Footer() {
</Link>
</div>
</footer>
)
);
}