added help center page text
This commit was merged in pull request #15.
This commit is contained in:
+7
-6
@@ -1,7 +1,7 @@
|
||||
import {useMutation} from '@tanstack/react-query';
|
||||
import Layout from "../components/layout/Layout"
|
||||
import Link from "next/link"
|
||||
//import {Form, Formik} from 'formik';
|
||||
import {Form, Formik} from 'formik';
|
||||
//import {Form, Formik} from 'formik';
|
||||
import * as Yup from "yup";
|
||||
|
||||
@@ -69,24 +69,25 @@ export default function Home() {
|
||||
{/* CONTACT FORM */}
|
||||
|
||||
<div>
|
||||
<div className="row d-flex align-items-center">
|
||||
<div className="row d-flex align-items-start">
|
||||
{/* IMAGE BLOCK */}
|
||||
<div className="col-md-6 col-lg-6">
|
||||
<div className="img-block left-column wow fadeInRight">
|
||||
<img className="img-fluid" src="/images/img-14.png" alt="content-image"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div className="col-md-6 col-lg-6">
|
||||
<div className="form-holder">
|
||||
<div
|
||||
<Formik
|
||||
initialValues={initialValues}
|
||||
validationSchema={validationSchema}
|
||||
onSubmit={handleContactMutation}
|
||||
>
|
||||
{(props) => {
|
||||
return (
|
||||
<div name="contactform" className="row contact-form">
|
||||
<Form name="contactform" className="row contact-form">
|
||||
{/* Form Select */}
|
||||
<div className="col-md-12 input-subject">
|
||||
<p className="p-lg">This question is
|
||||
@@ -168,10 +169,10 @@ export default function Home() {
|
||||
<div className="col-lg-12 contact-form-msg">
|
||||
<span className="loading"/>
|
||||
</div>
|
||||
</div>
|
||||
</Form>
|
||||
);
|
||||
}}
|
||||
</div>
|
||||
</Formik>
|
||||
</div>
|
||||
{/*</div>*/}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user