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