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