16 lines
496 B
TypeScript
16 lines
496 B
TypeScript
export function SiteFooter() {
|
|
return (
|
|
<footer className="border-t border-line bg-panel px-6 py-6 text-center font-mono text-[10px] uppercase tracking-[0.16em] text-muted">
|
|
Social Minecraft is sponsored by{" "}
|
|
<a
|
|
className="font-bold text-ink underline decoration-accent underline-offset-4 transition-colors hover:text-accent"
|
|
href="https://dmg.games"
|
|
rel="noreferrer"
|
|
target="_blank"
|
|
>
|
|
DMG Games.
|
|
</a>
|
|
</footer>
|
|
);
|
|
}
|