diff --git a/src/app/[orgId]/settings/sites/create/page.tsx b/src/app/[orgId]/settings/sites/create/page.tsx index f078b9d7..438d1ae7 100644 --- a/src/app/[orgId]/settings/sites/create/page.tsx +++ b/src/app/[orgId]/settings/sites/create/page.tsx @@ -57,6 +57,8 @@ import { BreadcrumbSeparator } from "@app/components/ui/breadcrumb"; import Link from "next/link"; +import { QRCodeCanvas } from "qrcode.react"; +import QRContainer from "@app/components/QRContainer"; const createSiteFormSchema = z .object({ @@ -775,8 +777,16 @@ PersistentKeepalive = 5`; - - +
+ + + + +
diff --git a/src/components/QRContainer.tsx b/src/components/QRContainer.tsx new file mode 100644 index 00000000..65912dba --- /dev/null +++ b/src/components/QRContainer.tsx @@ -0,0 +1,17 @@ +"use client"; + +export default function QRContainer({ + children =
, + outline = true +}) { + + return ( +
+
+ {children} +
+
+ ); +}