Add proxy auth ui

This commit is contained in:
Eduard Gert
2026-02-03 19:05:55 +01:00
parent 92f72bfce6
commit 733ea77c5c
44 changed files with 5479 additions and 13 deletions

View File

@@ -0,0 +1,12 @@
import { NetBirdLogo } from "./NetBirdLogo";
export function PoweredByNetBird() {
return (
<div className="flex items-center justify-center mt-8 gap-2 group cursor-pointer">
<span className="text-sm text-nb-gray-400 font-light text-center group-hover:opacity-80 transition-all">
Powered by
</span>
<NetBirdLogo size="small" mobile={false} />
</div>
);
}