Skip to content

Commit 68936f1

Browse files
committed
feat: add Braid site attribution link to footer
Adds a subtle "Site by Braid." link next to the copyright notice for SEO attribution.
1 parent cdf5ae8 commit 68936f1

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

docs/src/components/TheFooter.vue

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const year = new Date().getFullYear()
77
<p class="copyright">
88
Released under the <a href="https://opensource.org/licenses/MIT">MIT License</a>.<br>
99
Copyright &copy; {{ year }} FormKit, Inc.
10+
<a href="https://www.wearebraid.com" target="_blank" class="attribution">Site by Braid.</a>
1011
</p>
1112
</footer>
1213
</template>
@@ -29,4 +30,11 @@ footer {
2930
padding: 3em 2em;
3031
text-align: center;
3132
}
33+
.attribution {
34+
color: inherit;
35+
text-decoration: none;
36+
}
37+
.attribution:hover {
38+
text-decoration: underline;
39+
}
3240
</style>

0 commit comments

Comments
 (0)