This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
scoresaber-reloadedv3/src/components/footer.tsx

44 lines
1001 B
TypeScript
Raw Normal View History

2024-09-13 19:52:27 +00:00
import Link from "next/link";
import { getBuildInformation } from "@/common/website-utils";
type NavbarItem = {
name: string;
link: string;
};
const items: NavbarItem[] = [
{
name: "Home",
link: "/",
},
{
name: "Source",
link: "https://git.fascinated.cc/Fascinated/scoresaber-reloadedv3",
},
];
export default function Footer() {
const { buildId, buildTime } = getBuildInformation();
return (
2024-09-13 19:59:34 +00:00
<div className="flex items-center w-full flex-col gap-1 mt-6">
2024-09-13 19:52:27 +00:00
<p className="text-input text-sm">
Build: {buildId} ({buildTime})
</p>
<div className="h-14 w-full flex items-center justify-center bg-secondary/95 divide-x divide-input">
{items.map((item, index) => {
return (
2024-09-13 19:56:03 +00:00
<Link
key={index}
className="px-2 text-pp hover:brightness-75"
href={item.link}
>
2024-09-13 19:52:27 +00:00
{item.name}
</Link>
);
})}
</div>
</div>
);
}