Merge pull request #595 from imbavirus/feature/wireguard-qrcode

Added QR code to wireguard config for easy scanning on mobile phones
This commit is contained in:
Milo Schwartz 2025-04-28 18:21:01 -04:00 committed by GitHub
commit c4ae34383d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 29 additions and 2 deletions

View file

@ -0,0 +1,17 @@
"use client";
export default function QRContainer({
children = <div/>,
outline = true
}) {
return (
<div
className={`relative w-fit border-2 rounded-md`}
>
<div className="bg-white p-6 rounded-md">
{children}
</div>
</div>
);
}