Skip to content

Commit

Permalink
fixed js
Browse files Browse the repository at this point in the history
  • Loading branch information
VNAPNIC committed Sep 3, 2023
1 parent 83c1a06 commit 83a3b7c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ export default function Footer() {
<div className="links list-pd">
<h4 className="heading text-white">Quick Links</h4>
<ul className="list-unstyled mb-0">
<li><Link href="/"
className="text-size-18 text text-decoration-none">Home</Link></li>
<li><a href="https://smew.tech/"
className="text-size-18 text text-decoration-none">Home</a></li>
<li><Link href="/about"
className="text-size-18 text text-decoration-none">About</Link></li>
<li><Link href="/services"
Expand All @@ -69,7 +69,7 @@ export default function Footer() {
<h4 className="heading text-white">Our Services</h4>
<ul className="list-unstyled mb-0">
<li><Link href="/services" className="text-size-18 text text-decoration-none">ODC</Link></li>
<li><Link href="/"
<li><Link href="/services"
className="text-size-18 text text-decoration-none">Mobile</Link>
</li>
<li><Link href="/projects" className="text-size-18 text text-decoration-none">Website</Link></li>
Expand Down
6 changes: 3 additions & 3 deletions src/components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ export default function NavBar() {
<div className="main-header">
<div className="container-fluid">
<nav className="navbar navbar-expand-lg navbar-light">
<Link className="navbar-brand" href="/">
<a className="navbar-brand" href="https://smew.tech/">
<figure className="mb-0 banner-logo">
<img src="./images/logo.png" alt="" className="img-fluid"/>
</figure>
</Link>
</a>
<button className="navbar-toggler collapsed" type="button" data-toggle="collapse"
data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false"
Expand All @@ -25,7 +25,7 @@ export default function NavBar() {
<div className="collapse navbar-collapse" id="navbarSupportedContent">
<ul className="navbar-nav">
<li className={`nav-item ${router.pathname === '/' ? "active" : ""}`}>
<Link className="nav-link" href="/">Home</Link>
<a className="nav-link" href="https://smew.tech/">Home</a>
</li>
<li className={`nav-item ${router.pathname === '/about' ? "active" : ""}`}>
<Link className="nav-link" href="/about">About</Link>
Expand Down

0 comments on commit 83a3b7c

Please sign in to comment.