import { Flex } from "reflexbox/styled-components"; import styled from "styled-components"; import getConfig from "next/config"; import React from "react"; const { publicRuntimeConfig } = getConfig(); const ReCaptcha = () => { if (process.env.NODE_ENV !== "production") { return null; } return ( ); }; export default ReCaptcha;