'use client' import { Header } from '@ciphera-net/ui' import { Footer } from '@/components/Footer' import { useAuth } from '@/lib/auth/context' import Link from 'next/link' export default function LayoutContent({ children }: { children: React.ReactNode }) { const auth = useAuth() return ( <>
{children}