diff --git a/frontend/src/pages/Landing.tsx b/frontend/src/pages/Landing.tsx index 7bc8829c..400f1247 100644 --- a/frontend/src/pages/Landing.tsx +++ b/frontend/src/pages/Landing.tsx @@ -1,12 +1,7 @@ -import { CSSProperties, useState } from "react"; +import { CSSProperties } from "react"; import { Button, Stack } from "react-bootstrap"; -import { CallToAction } from "../components/Utilities/modal"; -import { AuthModal } from "../components/Utilities/AuthModal"; export const Landing = () => { - const [showModal, setShowModal] = useState(false); - const handleCloseModal = () => setShowModal(false); - const handleShowModal = () => setShowModal(true); const pageStyle: CSSProperties = { margin: 0, padding: 0, @@ -19,7 +14,7 @@ export const Landing = () => { left: 0, width: "100%", height: "100%", - backgroundImage: `url(/food-background.jpg)`, + backgroundImage: `url(public/food-background.jpg)`, backgroundSize: "cover", backgroundPosition: "center", opacity: 0.5, @@ -35,7 +30,6 @@ export const Landing = () => {
- -
- - - -
); };