Add a new app: QR code generator for campaign (#75)

* Initialize a new NX project - QR campaign

* Develop QR code generator app for campaign

* Add deployment script

Add Dockerfile, docker compose, and update Nix config for deployment

* Revert package.json to fix ci

* Revert package-lock.json to ensure ci (Nix build & cache) successful
This commit is contained in:
Hafid Nur
2026-02-14 17:15:46 +07:00
committed by GitHub
parent 8728d0abd7
commit 9d37cba65f
47 changed files with 3627 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
import { Outlet } from 'react-router-dom';
import { RequireAdmin } from '../features/admin/components/RequireAdmin';
export default function AdminLayout() {
return (
<RequireAdmin>
<Outlet />
</RequireAdmin>
);
}