Skip to content

Commit

Permalink
fix(seo): change h1 to match witnet logo
Browse files Browse the repository at this point in the history
  • Loading branch information
gabaldon committed Jun 29, 2023
1 parent 8b04f51 commit c04ce7e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion components/Hero.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<SectionLayout class="main-section">
<div class="info">
<i18n path="hero.title.main" class="title header-1" tag="h1">
<i18n path="hero.title.main" class="title header-1" tag="h2">
<span class="gradient">{{ $t('hero.title.gradient') }}</span>
</i18n>
<p class="description">{{ $t('hero.description') }}</p>
Expand Down
15 changes: 9 additions & 6 deletions components/NavBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@
<div class="nav-container" :class="{ drop: isMenuVisible }">
<nav class="navbar" :class="{ open: isMenuVisible }">
<div class="menu-container">
<img
class="logo"
src="@/assets/images/witnet_logo.svg"
alt=""
aria-hidden="true"
/>
<h1>
<a href="https://witnet.io/">
<img
class="logo"
src="@/assets/images/witnet_logo.svg"
alt="Witnet logo"
/>
</a>
</h1>
<label class="responsive-menu" @click="toggleMenu">
<a class="target-burger" :class="{ visible: isMenuVisible }">
<ul class="buns">
Expand Down

0 comments on commit c04ce7e

Please sign in to comment.