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
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>
);
}