Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718
  1. import type { NextPage } from 'next';
  2. import { serverSideTranslations } from 'next-i18next/serverSideTranslations';
  3. import ContactPageForm from '../../components/forms/contact/ContactPageForm';
  4. const Contact: NextPage = () => {
  5. return <ContactPageForm />;
  6. };
  7. export const getStaticProps = async ({ locale }: any) => {
  8. return {
  9. props: {
  10. ...(await serverSideTranslations(locale, ['contact'])),
  11. },
  12. };
  13. }
  14. export default Contact;