diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 391f3ed..1acf97b 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -1,18 +1,33 @@ -import React from "react"; +import React, { useState } from "react"; import Header from "./components/Header"; import Footer from "./components/Footer"; import MultiForm from "./components/MultiForm"; import { Toaster } from "react-hot-toast"; +import Circles from "./components/Circles"; +import hero from "./assets/hero-img.png"; +import Modal from "./components/Modal"; const App: React.FC = () => { + const [openModal, setOpenModal] = useState(false); return ( <> +
+ +
+
+
+
+ +
+
+
+ +
+
+ {openModal && } -
-
- -
-