Skip to content

Commit

Permalink
verification
Browse files Browse the repository at this point in the history
  • Loading branch information
mallardj committed Mar 25, 2024
1 parent c14d048 commit ad3ac37
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<script type="text/javascript"
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/email.min.js"></script>
<script type="text/javascript">
import 'bootstrap/dist/css/bootstrap.min.css';
(function () {
emailjs.init("5x9ZHkXA-ydOtvqft"); // Obtain your user ID at the dashboard https://dashboard.emailjs.com/integration
})();
Expand Down
8 changes: 4 additions & 4 deletions src/Components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ const Footer = () => {
}, [navigate]);

const onNSFFoundationClick = useCallback(() => {
window.open("https://www.ucsfhealth.org/");

}, []);
const onUCSFHealthClick = useCallback(() => {
window.open("https://www.nsf.gov/");
}, []);

const onUCSFHealthClick = useCallback(() => {
window.open("https://www.ucsfhealth.org/");
}, []);

const onKennedyKriegerClick = useCallback(() => {
window.open("https://www.kennedykrieger.org/");

Expand Down
4 changes: 3 additions & 1 deletion src/Pages/BookDemo.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ const BookADemo = () => {
}

return (
<div className="inset-0 bg-cover bg-top text-center bg-[url('Background.svg')] bg-repeat ">
<>
<SuccessPopUp show={modal} onHide={() => setModalShow(false)} />
<div className="inset-0 bg-cover bg-top text-center bg-[url('Background.svg')] bg-repeat ">
<Navbar />
<div className="w-full relative flex flex-col items-start justify-start pt-[110px] px-0 pb-[600px] box-border gap-[60px] tracking-[normal] text-center text-base text-white font-head mq675:gap-[30px_60px]">
<div className="self-stretch relative leading-[24px] font-head">
Expand Down Expand Up @@ -65,6 +66,7 @@ const BookADemo = () => {
<div className="w-full hidden max-w-[760px] mq750:max-w-full" />
</div>
</div>
</>
);
};

Expand Down

0 comments on commit ad3ac37

Please sign in to comment.