Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

index.js 406B

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