Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

contact.js 388B

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