diff --git a/src/app/groups/layout.tsx b/src/app/groups/layout.tsx
new file mode 100644
index 0000000..957b823
--- /dev/null
+++ b/src/app/groups/layout.tsx
@@ -0,0 +1,11 @@
+import type { ReactNode } from "react"
+import { ReportFab } from "@/components/groups/report/fab"
+
+export default function GroupsLayout({ children }: { children: ReactNode }) {
+ return (
+ <>
+ {children}
+