fix deployment error

This commit is contained in:
fgrreloaded
2025-03-01 22:58:47 +05:30
parent 287e9df8cd
commit aa4cde6a82

View File

@@ -1,3 +1,5 @@
import Link from "next/link";
const Footer = () => { const Footer = () => {
return ( return (
<footer className="relative w-full font-mono"> <footer className="relative w-full font-mono">
@@ -18,25 +20,30 @@ const Footer = () => {
</h3> </h3>
<ul className="text-gray-400 space-y-2"> <ul className="text-gray-400 space-y-2">
<li> <li>
<a <Link
target="_blank"
href="https://github.com/better-t-stack/create-better-t-stack" href="https://github.com/better-t-stack/create-better-t-stack"
className="hover:text-white transition-colors" className="hover:text-white transition-colors"
> >
<span className="text-gray-500">-</span> GitHub <span className="text-gray-500">-</span> GitHub
</a> </Link>
</li> </li>
<li> <li>
<a <Link
target="_blank"
href="https://www.npmjs.com/package/create-better-t-stack" href="https://www.npmjs.com/package/create-better-t-stack"
className="hover:text-white transition-colors" className="hover:text-white transition-colors"
> >
<span className="text-gray-500">-</span> NPM <span className="text-gray-500">-</span> NPM
</a> </Link>
</li> </li>
<li> <li>
<a href="/docs" className="hover:text-white transition-colors"> <Link
href="/docs"
className="hover:text-white transition-colors"
>
<span className="text-gray-500">-</span> Documentation <span className="text-gray-500">-</span> Documentation
</a> </Link>
</li> </li>
</ul> </ul>
</div> </div>