Skip to content

Commit

Permalink
fixing errors
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisRono committed Feb 8, 2022
1 parent ac886ff commit de29515
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ bin-debug/
bin-release/
[Oo]bj/
[Bb]in/
.next

# Other files and folders
.settings/
Expand Down
2 changes: 1 addition & 1 deletion .next/server/pages/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .next/static/chunks/pages/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .next/static/chunks/webpack.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
/******/
/******/ /* webpack/runtime/getFullHash */
/******/ !function() {
/******/ __webpack_require__.h = function() { return "5d7300cf9307d82c"; }
/******/ __webpack_require__.h = function() { return "582bd73055c907aa"; }
/******/ }();
/******/
/******/ /* webpack/runtime/global */
Expand Down
8 changes: 4 additions & 4 deletions components/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ export const Header = () => {
<a href="./login.html" className="login-button">Sign in</a>
</div>
<span className="resopen">
<i className="nav-cont navopen fas fa-bars" onclick="navbar()"></i>
<i id="navclose" className="nav-cont fas fa-times" onclick="navclose()" style="display: none;"></i>
<i className="nav-cont navopen fas fa-bars" onClick="navbar()"></i>
<i id="navclose" className="nav-cont fas fa-times" onClick="navclose()" style={{ display: "none" }}></i>
</span>
</div>
</div>
Expand All @@ -59,10 +59,10 @@ export const Header = () => {
<div className="h_search">
<form className="navform" id="navform">
<input className="searchinput" type="text" placeholder="Search.." />
<i className="fas fa-search" type="submit" name="submit" onclick="closeform();"></i>
<i className="fas fa-search" type="submit" name="submit" onClick="closeform();"></i>
</form>
<div className="show_search_form" id="openform">
<i className="fas fa-search" onclick="showsearchform();"></i>
<i className="fas fa-search" onClick="showsearchform();"></i>
</div>
</div>
</div>
Expand Down

2 comments on commit de29515

@vercel
Copy link

@vercel vercel bot commented on de29515 Feb 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on de29515 Feb 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

cynthiadesign – ./

cynthiadesign.vercel.app
cynthiadesign-dennisrono.vercel.app
cynthiadesign-git-main-dennisrono.vercel.app

Please sign in to comment.