Files
Proxmox/components/Footer.tsx
T
Bram Suurd e8f52689e1 bun format
2024-08-03 14:48:35 +02:00

31 lines
932 B
TypeScript

import Link from "next/link";
import React from "react";
export default function Footer() {
return (
<div className="supports-backdrop-blur:bg-background/90 mt-auto flex justify-center border-t border-border bg-background/40 py-6 backdrop-blur-lg">
<div className="mx-6 w-full max-w-7xl text-sm">
Build by{" "}
<Link
href="https://github.com/BramSuurdje"
className="font-semibold underline-offset-2 duration-300 hover:underline"
target="_blank"
rel="noreferrer"
>
Bram Suurd
</Link>
. The source code is avaliable on{" "}
<Link
href="https://github.com/BramSuurdje/proxmox-helper-scripts"
target="_blank"
rel="noreferrer"
className="font-semibold underline-offset-2 duration-300 hover:underline "
>
GitHub
</Link>
.
</div>
</div>
);
}