|
1 | 1 | import Image from "next/image"; |
2 | 2 | import Link from "next/link"; |
3 | 3 | import { Button } from "@/components/ui/button"; |
| 4 | +import { BsGithub, BsTwitterX, BsDiscord } from "react-icons/bs"; |
| 5 | +import { LiaBookSolid } from "react-icons/lia"; |
4 | 6 |
|
5 | 7 | export default function LandingPage() { |
6 | 8 | return ( |
@@ -51,6 +53,50 @@ export default function LandingPage() { |
51 | 53 | </Link> |
52 | 54 | </div> |
53 | 55 | </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> |
54 | 100 | </section> |
55 | 101 | </div> |
56 | 102 | ); |
|
0 commit comments