import { useEffect, useState } from "react"; import { collection, setDoc, doc } from "firebase/firestore"; import { db, auth } from "../../firebase"; import Button from "../../pageElements/Button"; import { v4 as uuidv4 } from "uuid"; import arrow from "../../Assets/Images/Arrow.png"; import { useNavigate } from "react-router-dom"; import ConfirmModal from "../Modals/ConfirmModal"; import { marchEmailPrm } from "../../secrets"; import { createUserWithEmailAndPassword } from "firebase/auth"; import { stateDataValues } from "../../Constants/Fields/SignupFields"; import "../../styles/homepage.scss"; const HomePage = () => { const navigate = useNavigate(); const [showPromoModal, setShowPromoModal] = useState(false); const [isBusy, setIsBusy] = useState(false); const [notice, setNotice] = useState(""); const apiUrl = process.env.NODE_ENV === "development" ? process.env.REACT_APP_API_DEV : process.env.REACT_APP_API_PROD; async function saveUserData( authId, dataValues, customerId, subscriptionCreated, subscriptionPeriodStart, subscriptionPeriodEnd, subscriptionId, isPromotionalMebership ) { const appUserId = uuidv4(); const firmId = uuidv4(); const fbAuthUid = authId; let plan = "promo plan"; let docsAllowedPerMonth; if (isPromotionalMebership === true) { docsAllowedPerMonth = 1; subscriptionId = uuidv4(); plan = plan; } else { //docsAllowedPerMonth = selectedPlan[0].docsAllowedPerMonth; } const docsGenerated = 0; const { firstName, lastName, firm, telephone, streetAddress, city, state, zipCode, barNumber, practiceArea, email, } = dataValues; const userState = stateDataValues.filter((value) => { if (value.name === state) return value; }); const userData = { docsAllowedPerMonth, docsGenerated, appUserId, fbAuthUid, firmId, firstName, lastName, firm, telephone, streetAddress, city, state: userState, zipCode, barNumber, practiceArea, email, isPromotionalMebership, customerId: customerId, subscriptionId: subscriptionId, //subscriptionPlan: plan, subscriptionCreated: subscriptionCreated, subscriptionPeriodStart: subscriptionPeriodStart, subscriptionPeriodEnd: subscriptionPeriodEnd, }; try { const usersRef = collection(db, "users"); const res = await setDoc(doc(usersRef, fbAuthUid), userData); return res; } catch (error) { console.log(`Error saving new user to db: ${error}`); } } async function getFocusData(code) { try { const response = await fetch(`${apiUrl}/v1/get-focused-data/${code}`, { method: "GET", }); const res = await response.json(); return res; } catch (err) { console.log("Error in get rqst:", err); } } async function handleProcessPromoSubscription(code) { console.log("code in handleProcessPromoSubscription", code); setShowPromoModal(false); if (!code) { return; } setIsBusy(true); const userData = await getFocusData(code); if (!userData) { return; } else { handlePromoSignup(userData); } } const handlePromoSignup = async (dataValues) => { console.log("dataValues in handlePromoSignup", dataValues); return; if (dataValues) { try { const customerId = `${uuidv4()}-florida-spring-promo`; const today = new Date(); const subscriptionCreated = today; const subscriptionPeriodStart = today; console.log(subscriptionPeriodStart); const subscriptionPeriodEnd = today; const subscriptionId = uuidv4(); const userCredential = await createUserWithEmailAndPassword( auth, dataValues.email, dataValues.password ); const user = userCredential.user; dataValues = { ...dataValues }; const isPromotionalMebership = true; const res = await saveUserData( user.uid, dataValues, customerId, subscriptionCreated, subscriptionPeriodStart, subscriptionPeriodEnd, subscriptionId, isPromotionalMebership ); setIsBusy(false); navigate("/dashboard"); } catch (error) { console.log("Error handling request", error, error.message); setIsBusy(false); setNotice("Sorry, something went wrong. Please try again."); } } }; const handleTryItButton = () => { setShowPromoModal(true); }; const handleLogin = () => { navigate("/login"); }; const handleCancelModal = () => { setShowPromoModal(!showPromoModal); navigate("/signup"); }; const handleDemo = () => { const supReq = null; navigate("/requestpage/supReq"); }; return ( <>

Novodraft: Legal AI

Novodraft

AI-Assisted Legal Drafting

Draft documents faster and smarter

Discovery requests
dramatically fast
Draft responses to
demands in minutes

Discovery requests done dramatically fast – discovery responses ready in minutes.

Reclaim hours every week. Spend time growing your practice, or just get home by dinner.

{/* Section 2 */}

Made by Attorneys, for Attorneys

image of a laptop computer

Made by Attorneys, for Attorneys.

Legal tech developed by people that understand what you need.

Novodraft understands the demands on your time. For example, that discovery request on your desk. With a few clicks, and Novodraft's AI assistant on the task, you can draft a ready-to-serve response in minutes. It's as easy as uploading a .pdf file.

Novodraft cuts through a mire of rote tasks, but does much more than automate.

Intellidraft AI technology powers persuasive arguments and boosts bland, boilerplate objections. Configurable for level of authoritative citation and for infering factual context from pleadings and briefs. Use it to augment your drafting as much or as little as you prefer.

{/* Section 3 */}

AI-Powered Legal Drafting Technology{" "}

Novo Drafting Technology

Created by litigators to give you an edge.

{/*********** CARD ONE *********** */}
ai hand

Discovery Requests

Generate interrogatories and requests for production/admissions leveraging AI.

Edit or add special language with tags. Concise yet comprehensive demands, done in minutes.

{/*********** CARD TWO *********** */}
scales image

Discovery Responses

Use Novodraft AI to quickly draft responses including compelling arguments about what you withhold from disclosure. Finish in minutes with a downloadable .docx file.

{/*********** CARD THREE *********** */}

Proactive Alerts

Your dashboard displays important deadlines, alerts, and can be configured to auto-draft documents with reminders for tasks such as service or hearings.

Questions about our services?

We're here to answer!

Questions about our products and services?

We're here to answer!

Novodraft will revolutionize your practice.
Request a demo - let us show you how.
Revolutionize your practice.
Let us show you how.
{showPromoModal ? ( ) : ( <> )}
); }; export default HomePage;