'use client' import Header from '@/app/signin/_header' import { useGlobalPublicStore } from '@/context/global-public-context' import useDocumentTitle from '@/hooks/use-document-title' import { cn } from '@/utils/classnames' export default function RegisterLayout({ children }: any) { const { systemFeatures } = useGlobalPublicStore() useDocumentTitle('') return ( <>
{children}
{systemFeatures.branding.enabled === false && (
© {' '} {new Date().getFullYear()} {' '} LangGenius, Inc. All rights reserved.
)}
) }