first commit

This commit is contained in:
Kenneth Jannette
2024-01-11 18:24:41 -06:00
commit 4c1fb67383
103 changed files with 29954 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
import { useState, useContext, useEffect } from "react";
import { useNavigate } from "react-router-dom";
import {
FeaturesTop,
FeaturesBottom,
} from "../../Constants/Copy/featuresCopy.js";
import legalTek from "../../Assets/Images/legalTek.jpg";
import legalTechFlip from "../../Assets/Images/legalTechFlip.jpg";
import { ReactComponent as HowToInfoSvg } from "../../Assets/svg/howToInfo.svg";
import "../../styles/features.scss";
const FeaturesPage = () => {
return (
<>
<div className="features-container">
<div className="features-top-wrapper">
<div className="features-top-left">
<FeaturesTop />
</div>
<div className="features-top-right">
<img className="features-image-one" src={legalTechFlip} />
</div>
</div>
<div className="features-bottom-wrapper">
<div className="features-bottom-right">
<img className="features-image-one" src={legalTek} />
</div>
<div className="features-bottom-left">
<FeaturesBottom />
</div>
</div>
</div>
</>
);
};
export default FeaturesPage;