import Layout from '@/components/layouts/admin';
import ManufacturerCreateOrUpdateForm from '@/components/manufacturer/manufacturer-form';
import { useTranslation } from 'next-i18next';
import { serverSideTranslations } from 'next-i18next/serverSideTranslations';
import { adminOnly } from '@/utils/auth-utils';

export default function CreateManufacturerPage() {
  const { t } = useTranslation();
  return (
    <>
      <div className="flex border-b border-dashed border-border-base py-5 sm:py-8">
        <h1 className="text-lg font-semibold text-heading">
          {t('form:form-title-create-manufacturer')}
        </h1>
      </div>
      <ManufacturerCreateOrUpdateForm />
    </>
  );
}
CreateManufacturerPage.authenticate = {
  permissions: adminOnly,
};
CreateManufacturerPage.Layout = Layout;

export const getStaticProps = async ({ locale }: any) => ({
  props: {
    ...(await serverSideTranslations(locale, ['form', 'common'])),
  },
});
