Skip to content

Commit

Permalink
contact modal component
Browse files Browse the repository at this point in the history
  • Loading branch information
carolrs committed Jun 22, 2023
1 parent 3193c99 commit b83c9ef
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/ContactModal.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import React from 'react';

const ContactModal = ({ onClose }) => {
return(
<>
<div className="modal">
<div className="modal-content">
<span className="close" onClick={onClose}>&times;</span>
<h2 className="font-bold text-2xl mb-2 lg: text:4xl">Contact Details:</h2>
<p><a href="https://github.com/carolrs" target="_blank" rel="noopener noreferrer">GitHub</a></p>
<p><a href="https://www.linkedin.com/in/anacarolrsoares/" target="_blank" rel="noopener noreferrer">LinkedIn</a></p> </div>
</div>
</>
)

}

export default ContactModal;

0 comments on commit b83c9ef

Please sign in to comment.