import { useEffect } from "react"; import { collection, setDoc, doc } from "firebase/firestore"; import { db } 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 "../../styles/homepage.scss"; const HomePage = () => { const navigate = useNavigate(); async function saveData(data) { const id = uuidv4(); const visitRef = collection(db, "homevisitors"); await setDoc(doc(visitRef, `${id}`), data); } function getPosition() { return new Promise((res, rej) => { navigator.geolocation.getCurrentPosition(res, rej); }); } useEffect(() => { if (window.location.href === "http://localhost:3000/") { return; } const userAgent = window?.navigator.userAgent; getPosition().then((data) => { const dateTime = new Date(); const currentLat = data.coords.latitude; const currentLong = data.coords.longitude; const values = {}; values["userAgent"] = userAgent; values["latitude"] = currentLat; values["longitude"] = currentLong; values["dateTime"] = String(dateTime); saveData(values); }); }, []); const handleNavigate = () => { navigate("/signup"); }; const handleLogin = () => { navigate("/login"); }; 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 built by people that get it.

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 discovery requests with AI at your service, edit or add special language with tags. Concise yet comprehensive demands, done in minutes and downloadable as .docx.

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

Discovery Responses

Novodraft's AI powers responses with compelling arguments about what you choose to disclose and withhold. You'll finish in minutes with a downloadable .docx file.

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

Proactive Alerts

Your dashboard displays important deadlines, alerts, and can configure to auto-draft documents and remind you to serve them.

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.
); }; export default HomePage;