forked from MergeFi/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFooter.tsx
More file actions
65 lines (63 loc) · 2.4 KB
/
Copy pathFooter.tsx
File metadata and controls
65 lines (63 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import Link from "next/link";
import { GitMerge } from "lucide-react";
const columns = [
{
title: "Platform",
links: [
{ href: "/issues", label: "Browse bounties" },
{ href: "/milestones", label: "Milestones" },
{ href: "/connect", label: "Connect GitHub" },
],
},
{
title: "Roles",
links: [
{ href: "/dashboard/contributor", label: "Contributors" },
{ href: "/dashboard/maintainer", label: "Maintainers" },
{ href: "/dashboard/sponsor", label: "Sponsors" },
],
},
];
export function Footer() {
return (
<footer className="border-t border-slate-200 bg-white dark:border-slate-800 dark:bg-slate-950">
<div className="mx-auto max-w-6xl px-6 py-14">
<div className="grid gap-10 md:grid-cols-[2fr_1fr_1fr]">
<div>
<div className="flex items-center gap-2 font-semibold text-slate-900 dark:text-white">
<span className="flex h-7 w-7 items-center justify-center rounded-lg bg-slate-900 text-white dark:bg-white dark:text-slate-900">
<GitMerge className="h-4 w-4" />
</span>
MergeFi
</div>
<p className="mt-3 max-w-xs text-sm text-slate-500 dark:text-slate-400">
The financial infrastructure for open source. Merge code. Earn
instantly. Built on Stellar & Soroban.
</p>
</div>
{columns.map((col) => (
<div key={col.title}>
<p className="text-sm font-medium text-slate-900 dark:text-white">{col.title}</p>
<ul className="mt-3 space-y-2">
{col.links.map((link) => (
<li key={link.href}>
<Link
href={link.href}
className="text-sm text-slate-500 hover:text-slate-900 dark:text-slate-400 dark:hover:text-white"
>
{link.label}
</Link>
</li>
))}
</ul>
</div>
))}
</div>
<div className="mt-12 flex flex-col items-center justify-between gap-4 border-t border-slate-100 pt-6 text-sm text-slate-400 dark:border-slate-800 dark:text-slate-500 sm:flex-row">
<p>© {new Date().getFullYear()} MergeFi. All rights reserved.</p>
<p>Where open source meets finance.</p>
</div>
</div>
</footer>
);
}