Skip to content

Commit

Permalink
Fix : seo issue of link
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-contact-c committed Dec 30, 2024
1 parent 8045c17 commit a2eb969
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,13 @@ git config core.hooksPath .githooks

- Used for Animation.

## Contribution

The Canopas team enthusiastically welcomes contributions and project participation! There are a bunch of things you can do if you want to contribute! The [Contributor Guide](CONTRIBUTING.md) has all the information you need for everything from reporting bugs to contributing entire new features. Please don't hesitate to jump in if you'd like to, or even ask us questions if something isn't clear.

## Credits

This repository is owned and maintained by the [Canopas team](https://canopas.com/). If you are interested in building web apps or designing products, please let us know. We'd love to hear from you!
This repository is owned and maintained by the [Canopas team](https://canopas.com/). Please let us know if you are interested in building web apps or designing products. We'd love to hear from you!

<a href="https://canopas.com/contact"><img src="./assets/cta.png" width=300></a>

Expand Down
4 changes: 3 additions & 1 deletion nuxt-frontend/components/partials/NewHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,9 @@
class="my-2 ml-1 py-2 lg:ml-0"
>
<nuxt-link
:to="navbar.url == '/contributions' ? '' : navbar.url"
:to="
navbar.url && navbar.url !== '/contributions' ? navbar.url : '/'
"
@click.native="$mixpanel.track(navbar.event)"
class="flex gap-2 group relative mr-5 w-fit sm:mr-[30px] lg:mr-5 cursor-pointer"
:class="[
Expand Down
1 change: 0 additions & 1 deletion nuxt-frontend/nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export default defineNuxtConfig({
features: {
inlineStyles: false,
},
generate: { fallback: true },
imports: {
dirs: ["stores"],
},
Expand Down

0 comments on commit a2eb969

Please sign in to comment.