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