We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/leandrogavidia/solx402-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"use client"
import { Github } from "lucide-react"
import Link from "next/link"
export default function Footer() {
return (
<footer className="border-t border-border bg-card px-4 py-12 sm:px-6 lg:px-8">
<div className="mx-auto max-w-6xl">
<div className="grid grid-cols-1 md:grid-cols-2 gap-8 mb-8">
<div>
<div className="flex items-center gap-2 mb-4">
<span className="font-bold text-foreground">SOLx402</span>
</div>
<p className="text-sm text-muted-foreground">MCP Server for x402 payment protocol integration on Solana</p>
</div>
<div>
<h4 className="font-semibold text-foreground mb-4">Legal</h4>
<ul className="space-y-2 text-sm">
<li>
<Link href="https://github.com/leandrogavidia/solx402-mcp-server/blob/main/LICENSE.md" target="_blank" rel="noopener noreferrer" className="text-muted-foreground hover:text-foreground transition-colors">
License (MIT)
</Link>
</li>
</ul>
</div>
</div>
<div className="border-t border-border pt-8">
<div className="flex flex-col sm:flex-row items-center justify-between gap-4">
<p className="text-sm text-muted-foreground">© 2025 SOLx402. Built with ❤️ for Solana developers.</p>
<div className="flex gap-4">
<Link
href="https://github.com/leandrogavidia/solx402-mcp-server"
target="_blank"
rel="noopener noreferrer"
className="text-muted-foreground hover:text-foreground transition-colors"
>
<Github className="h-5 w-5" />
</Link>
</div>
</div>
</div>
</div>
</footer>
)
}