diff --git a/app/layout-content.tsx b/app/layout-content.tsx new file mode 100644 index 0000000..1ef5b61 --- /dev/null +++ b/app/layout-content.tsx @@ -0,0 +1,27 @@ +'use client' + +import { Header, Footer } from '@ciphera-net/ui' +import { useAuth } from '@/lib/auth/context' +import Link from 'next/link' + +export default function LayoutContent({ children }: { children: React.ReactNode }) { + const auth = useAuth() + + return ( + <> +
+
+ {children} +
+