@@ -23,16 +23,16 @@ const FeaturesPage = () => {
|
|||||||
<div className="features-top-right">
|
<div className="features-top-right">
|
||||||
<img className="features-image-one" src={legalTechFlip} />
|
<img className="features-image-one" src={legalTechFlip} />
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<div className="features-bottom-wrapper">
|
<div className="features-bottom-wrapper">
|
||||||
<div className="features-top-mobile-img">
|
<div className="features-bottom-left">
|
||||||
<img className="features-image-one" src={legalTek} />
|
<img className="features-image-one" src={legalTek} />
|
||||||
</div>
|
</div>
|
||||||
<div className="features-top-left">
|
<div className="features-bottom-right">
|
||||||
<FeaturesBottom />
|
<FeaturesBottom />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
@@ -41,6 +41,27 @@ export default FeaturesPage;
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div className="features-top-mobile-img">
|
||||||
|
<img className="features-image-one" src={legalTechFlip} />
|
||||||
|
</div>
|
||||||
|
<div className="features-top-left">
|
||||||
|
<FeaturesTop />
|
||||||
|
</div>
|
||||||
|
<div className="features-top-right">
|
||||||
|
<img className="features-image-one" src={legalTechFlip} />
|
||||||
|
</div>
|
||||||
|
<div className="features-bottom-wrapper">
|
||||||
|
<div className="features-top-mobile-img">
|
||||||
|
<img className="features-image-one" src={legalTek} />
|
||||||
|
</div>
|
||||||
|
<div className="features-top-left">
|
||||||
|
<FeaturesBottom />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div className="features-bottom-wrapper">
|
<div className="features-bottom-wrapper">
|
||||||
<div className="features-bottom-right">
|
<div className="features-bottom-right">
|
||||||
<img className="features-image-one" src={legalTek} />
|
<img className="features-image-one" src={legalTek} />
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ import "../../styles/homepage.scss";
|
|||||||
|
|
||||||
const HomePage = () => {
|
const HomePage = () => {
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
||||||
const handleNavigate = () => {
|
const handleNavigate = () => {
|
||||||
navigate("/signup");
|
navigate("/signup");
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import "../../styles/login.scss";
|
|||||||
|
|
||||||
const Login = () => {
|
const Login = () => {
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
||||||
const auth = getAuth();
|
const auth = getAuth();
|
||||||
const [isBusy, setIsBusy] = useState(false);
|
const [isBusy, setIsBusy] = useState(false);
|
||||||
const [email, setEmail] = useState("");
|
const [email, setEmail] = useState("");
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import React, { useState } from "react";
|
import React, { useState, useEffect } from "react";
|
||||||
import Col from "react-bootstrap/Col";
|
import Col from "react-bootstrap/Col";
|
||||||
import Form from "react-bootstrap/Form";
|
import Form from "react-bootstrap/Form";
|
||||||
import Row from "react-bootstrap/Row";
|
import Row from "react-bootstrap/Row";
|
||||||
@@ -24,6 +24,9 @@ const SignupPage = () => {
|
|||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
const [notice, setNotice] = useState("");
|
const [notice, setNotice] = useState("");
|
||||||
const [isMobile, setIsMobile] = useState(window.innerWidth < 440);
|
const [isMobile, setIsMobile] = useState(window.innerWidth < 440);
|
||||||
|
useEffect(() => {
|
||||||
|
setIsMobile(window.innerWidth < 440);
|
||||||
|
});
|
||||||
const fieldsChunkSize = 2;
|
const fieldsChunkSize = 2;
|
||||||
const [isBusy, setIsBusy] = useState(false);
|
const [isBusy, setIsBusy] = useState(false);
|
||||||
const [data, setData] = useState(getFormDataDefaults(signupfields));
|
const [data, setData] = useState(getFormDataDefaults(signupfields));
|
||||||
|
|||||||
@@ -47,8 +47,13 @@
|
|||||||
.features-bottom-left {
|
.features-bottom-left {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
margin: auto;
|
||||||
padding: 6px 8px;
|
padding: 6px 8px;
|
||||||
width: 50%;
|
width: 50%;
|
||||||
|
background-color: var(--haq-blue);
|
||||||
|
border-radius: 15px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -58,8 +63,6 @@
|
|||||||
padding: 18px 8px;
|
padding: 18px 8px;
|
||||||
width: 50%;
|
width: 50%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: var(--haq-blue);
|
|
||||||
border-radius: 15px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.features-image-one {
|
.features-image-one {
|
||||||
@@ -89,6 +92,8 @@
|
|||||||
|
|
||||||
.features-top-wrapper {
|
.features-top-wrapper {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
height: 468px;
|
||||||
|
margin-bottom: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.features-bottom-wrapper {
|
.features-bottom-wrapper {
|
||||||
|
|||||||
Reference in New Issue
Block a user