Skip to content

Commit

Permalink
fix(*): update form and link
Browse files Browse the repository at this point in the history
  • Loading branch information
HoseaCodes committed Jul 20, 2023
1 parent b6b2fdf commit fe3036f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/Components/NavBar/NavBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ const NavBar = () => {
id="navdrop" role="button" data-toggle="dropdown"
data-hover="dropdown">Portfolio</a>
<div className="dropdown-menu" aria-labelledby="navdrop">
<Link to="http://www.dominiquehosea.com" rel="noopener noreferrer"
target="_blank" className="dropdown-item nav-link">Backend Portfolio</Link>
<a href="http://www.dominiquehosea.com" target="_blank" rel="noopener noreferrer"
className="dropdown-item nav-link">Backend Portfolio</a>
<Link to="/project" rel="noopener noreferrer"
className="dropdown-item nav-link">Project Case Studies</Link>
</div>
Expand Down
10 changes: 5 additions & 5 deletions src/Components/Subscribe/Subscribe.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ import './Subscribe.css'

const Subscribe = () => {
return (
<div className='subscribe-container' >
<form className='subscribe-container' action="https://getform.io/f/7efda21f-ca67-48f6-8a1e-723776d4ae3b" method='POST' >
<h1>Subscribe</h1>
<hr />
<p > Sign up with your email address to reveive news and updates.</p>
<div className="mb-3">
<input placeholder={'First Name'}></input>
<input placeholder={'Last Name'}></input>
<input placeholder={'Email'}></input>
<input type="text" name="firstName" placeholder={'First Name'}></input>
<input type="text" name="lastName" placeholder={'Last Name'}></input>
<input type="email" name="email" placeholder={'Email'}></input>
</div>
<button className=" mb-3 personal-btn portfolio-link subscribe-link" >Subscribe</button>
</div>
</form>
)
}
export default Subscribe;

0 comments on commit fe3036f

Please sign in to comment.