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 52499af commit 2f2653a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 13 deletions.
8 changes: 3 additions & 5 deletions .idea/workspace.xml

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

2 changes: 1 addition & 1 deletion src/components/AboutUs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function AboutUs() {
<div className="years">
<span className="text-white value counter">10</span>
<sup className="text-white mb-0 plus">+</sup>
<span className="text-white text">Years</span>
<span className="text-white text">Years of Experience</span>
</div>
<figure className="mb-0 about-imagecircle">
<img src="./images/about-imagecircle.png" alt="" className=""/>
Expand Down
10 changes: 5 additions & 5 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ 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="/services"
<li><Link href="https://smew.tech/services"
className="text-size-18 text text-decoration-none">Services</Link>
</li>
<li><Link href="/projects"
Expand All @@ -68,12 +68,12 @@ export default function Footer() {
<div className="links">
<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="/services"
<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>
<li><Link href="/projects" className="text-size-18 text text-decoration-none">Website</Link></li>
<li><Link href="/contact"
<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>
</ul>
</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="/services">Services</Link>
<Link className="nav-link" href="https://smew.tech/services">Services</Link>
</li>
<li className={`nav-item ${router.pathname === '/projects' ? "active" : ""}`}>
<Link className="nav-link" href="/projects">Projects</Link>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function About() {
<div className="years">
<span className="text-white value counter">10</span>
<sup className="text-white mb-0 plus">+</sup>
<span className="text-white text">Years</span>
<span className="text-white text">Years of Experience</span>
</div>
<figure className="mb-0 about-imagecircle">
<img src="./images/about-imagecircle.png" alt="" className=""/>
Expand Down

0 comments on commit 2f2653a

Please sign in to comment.