Skip to content
This repository was archived by the owner on Mar 16, 2026. It is now read-only.

Commit 33c0860

Browse files
authored
Merge pull request #356 from aibtcdev/add-docs
Add links as a footer
2 parents c22dcc0 + 64d3f9c commit 33c0860

1 file changed

Lines changed: 46 additions & 0 deletions

File tree

src/components/Landing.tsx

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import Image from "next/image";
22
import Link from "next/link";
33
import { Button } from "@/components/ui/button";
4+
import { BsGithub, BsTwitterX, BsDiscord } from "react-icons/bs";
5+
import { LiaBookSolid } from "react-icons/lia";
46

57
export default function LandingPage() {
68
return (
@@ -51,6 +53,50 @@ export default function LandingPage() {
5153
</Link>
5254
</div>
5355
</div>
56+
57+
{/* Footer overlay */}
58+
<footer className="absolute bottom-0 left-0 right-0 py-6 px-6">
59+
<div className="container mx-auto flex justify-center">
60+
<div className="flex items-center space-x-4 sm:space-x-8">
61+
<Link
62+
href="https://docs.aibtc.dev/"
63+
target="_blank"
64+
rel="noopener noreferrer"
65+
className="backdrop-blur-sm bg-white/10 px-4 py-2 sm:px-5 sm:py-2.5 rounded-full transition-colors hover:bg-primary hover:text-white"
66+
aria-label="Documentation"
67+
>
68+
<LiaBookSolid className="w-5 h-5 sm:w-6 sm:h-6 transition-colors" />
69+
</Link>
70+
<Link
71+
href="https://github.com/aibtcdev"
72+
target="_blank"
73+
rel="noopener noreferrer"
74+
className="backdrop-blur-sm bg-white/10 px-4 py-2 sm:px-5 sm:py-2.5 rounded-full transition-colors hover:bg-primary hover:text-white"
75+
aria-label="GitHub"
76+
>
77+
<BsGithub className="w-5 h-5 sm:w-6 sm:h-6 transition-colors" />
78+
</Link>
79+
<Link
80+
href="https://discord.com/invite/Z59Z3FNbEX"
81+
target="_blank"
82+
rel="noopener noreferrer"
83+
className="backdrop-blur-sm bg-white/10 px-4 py-2 sm:px-5 sm:py-2.5 rounded-full transition-colors hover:bg-primary hover:text-white"
84+
aria-label="Discord"
85+
>
86+
<BsDiscord className="w-5 h-5 sm:w-6 sm:h-6 transition-colors" />
87+
</Link>
88+
<Link
89+
href="https://x.com/aibtcdev"
90+
target="_blank"
91+
rel="noopener noreferrer"
92+
className="backdrop-blur-sm bg-white/10 px-4 py-2 sm:px-5 sm:py-2.5 rounded-full transition-colors hover:bg-primary hover:text-white"
93+
aria-label="Twitter"
94+
>
95+
<BsTwitterX className="w-5 h-5 sm:w-6 sm:h-6 transition-colors" />
96+
</Link>
97+
</div>
98+
</div>
99+
</footer>
54100
</section>
55101
</div>
56102
);

0 commit comments

Comments
 (0)