Update footer.tsx

This commit is contained in:
Sam Heinz
2025-06-30 12:12:58 +10:00
parent bea9ce631c
commit ca92005105
+9 -3
View File
@@ -11,7 +11,8 @@ export default function Footer() {
<div className="mx-6 w-full flex justify-between text-xs sm:text-sm text-muted-foreground"> <div className="mx-6 w-full flex justify-between text-xs sm:text-sm text-muted-foreground">
<div className="flex items-center"> <div className="flex items-center">
<p> <p>
Website built by the community. The source code is available on{" "} Website built by the community. The source code is available on
{" "}
<Link <Link
href="https://github.com/asylumexp/Proxmox/tree/main/frontend" href="https://github.com/asylumexp/Proxmox/tree/main/frontend"
target="_blank" target="_blank"
@@ -21,6 +22,7 @@ export default function Footer() {
> >
GitHub GitHub
</Link> </Link>
{" "}
. .
</p> </p>
</div> </div>
@@ -29,13 +31,17 @@ export default function Footer() {
href="/json-editor" href="/json-editor"
className={cn(buttonVariants({ variant: "link" }), "text-muted-foreground flex items-center gap-2")} className={cn(buttonVariants({ variant: "link" }), "text-muted-foreground flex items-center gap-2")}
> >
<FileJson className="h-4 w-4" /> JSON Editor <FileJson className="h-4 w-4" />
{" "}
JSON Editor
</Link> </Link>
<Link <Link
href="/data" href="/data"
className={cn(buttonVariants({ variant: "link" }), "text-muted-foreground flex items-center gap-2")} className={cn(buttonVariants({ variant: "link" }), "text-muted-foreground flex items-center gap-2")}
> >
<Server className="h-4 w-4" /> API Data <Server className="h-4 w-4" />
{" "}
API Data
</Link> </Link>
</div> </div>
</div> </div>