'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}
>
)
}