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 2f2653a commit 5eba476
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
4 changes: 1 addition & 3 deletions .idea/workspace.xml

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

16 changes: 8 additions & 8 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ export default function Footer() {
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="https://smew.tech/services"
className="text-size-18 text text-decoration-none">Services</Link>
<li><a href="https://smew.tech/services"
className="text-size-18 text text-decoration-none">Services</a>
</li>
<li><Link href="/projects"
className="text-size-18 text text-decoration-none">Projects</Link>
Expand All @@ -68,13 +68,13 @@ export default function Footer() {
<div className="links">
<h4 className="heading text-white">Our Services</h4>
<ul className="list-unstyled mb-0">
<li><Link href="https://smew.tech/services" className="text-size-18 text text-decoration-none">ODC</Link></li>
<li><Link href="https://smew.tech/services"
className="text-size-18 text text-decoration-none">Mobile</Link>
<li><a href="https://smew.tech/services" className="text-size-18 text text-decoration-none">ODC</a></li>
<li><a href="https://smew.tech/services"
className="text-size-18 text text-decoration-none">Mobile</a>
</li>
<li><Link href="https://smew.tech/projects" className="text-size-18 text text-decoration-none">Website</Link></li>
<li><Link href="https://smew.tech/contact"
className="text-size-18 text text-decoration-none">Data Labels</Link></li>
<li><a href="https://smew.tech/services" className="text-size-18 text text-decoration-none">Website</a></li>
<li><a href="https://smew.tech/services"
className="text-size-18 text text-decoration-none">Data Labels</a></li>
</ul>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function NavBar() {
<Link className="nav-link" href="/about">About</Link>
</li>
<li className={`nav-item ${router.pathname === '/services' ? "active" : ""}`}>
<Link className="nav-link" href="https://smew.tech/services">Services</Link>
<a className="nav-link" href="https://smew.tech/services">Services</a>
</li>
<li className={`nav-item ${router.pathname === '/projects' ? "active" : ""}`}>
<Link className="nav-link" href="/projects">Projects</Link>
Expand Down

0 comments on commit 5eba476

Please sign in to comment.