Skip to content

Commit

Permalink
fix(build):fixing-building-issues
Browse files Browse the repository at this point in the history
  • Loading branch information
AswinAsok committed Oct 10, 2023
1 parent 54446a1 commit 5bda0ac
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/Pages/Pathway/components/Navbar/menubar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function Menubar() {
return (
<div ref={navbar} className={styles.menu_bar}>
<div className={styles.logo}>
<a href="#"><img src={img4} alt="Logo" /></a>
<a href="/"><img src={img4} alt="Logo" /></a>
</div>
<div className={styles.menu}>
<a href="#heroSection">Home</a>
Expand All @@ -31,7 +31,7 @@ export default function Menubar() {
<a href="#about">About Pathway</a>
</div>
<div className={styles.pre_rg}>
<a href="#">
<a href="/">
<img src={pre} alt="Pre-register" />
Pre-register
</a>
Expand Down
12 changes: 6 additions & 6 deletions src/Pages/Pathway/components/contact/Contact.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,35 +29,35 @@ export default function Contact() {
<ul>
{link.l1 ? (
<li>
<a href="#">{link.l1}</a>
<a href="/">{link.l1}</a>
</li>
) : null}
{link.l2 ? (
<li>
<a href="#">{link.l2}</a>
<a href="/">{link.l2}</a>
</li>
) : null}
{link.l3 ? (
<li>
<a href="#">{link.l3}</a>
<a href="/">{link.l3}</a>
</li>
) : null}
{link.l4 ? (
<li>
<a href="#">{link.l4}</a>
<a href="/">{link.l4}</a>
</li>
) : null}
{link.l5 ? (
<li>
<a href="#">{link.l5}</a>
<a href="/">{link.l5}</a>
</li>
) : null}
{link.l6 ? (
<li
style={{ textDecoration: "underline", color: "#1C1CF0" }}
>
{" "}
<a href="#">{link.l6}</a>{" "}
<a href="/">{link.l6}</a>{" "}
</li>
) : null}
</ul>
Expand Down

0 comments on commit 5bda0ac

Please sign in to comment.