re ordered home page cards and updated text

This commit is contained in:
2025-07-25 08:16:16 +01:00
parent b2e8eae518
commit 9971f8be4d
10 changed files with 68 additions and 32 deletions
+2
View File
@@ -4,6 +4,7 @@ import { useRouter } from "next/router";
import { connect } from "react-redux";
import { Field, reduxForm, SubmissionError } from "redux-form";
import { sendGAEvent } from "@next/third-parties/google";
import Dns from "./dns";
const required = (errorMsg) => (value) =>
value || typeof value === "number" ? undefined : errorMsg;
@@ -175,6 +176,7 @@ let CaseSearch = (props) => {
</Link>
</div>
</form>
<Dns />
</div>
</>
);