mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
fix deployment error
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user