myc0punkz-website/components/footer-section.tsx

26 lines
890 B
TypeScript

export function FooterSection() {
return (
<footer className="py-12 px-4 border-t border-border">
<div className="max-w-6xl mx-auto">
<div className="flex flex-col md:flex-row justify-between items-center gap-6">
<div className="text-sm text-muted-foreground font-mono">
© 2025 myc0punkz.xyz underground infrastructure
</div>
<div className="flex items-center gap-6 text-sm font-mono">
<a
href="mailto:hello@myc0punkz.xyz"
className="text-muted-foreground hover:text-accent transition-colors"
>
Signal us
</a>
<div className="text-muted-foreground">
Built with <span className="text-primary"></span> from the underground
</div>
</div>
</div>
</div>
</footer>
)
}