Skip to content

Commit

Permalink
add status link to website for public services (#313)
Browse files Browse the repository at this point in the history
Signed-off-by: Bob Callaway <[email protected]>
  • Loading branch information
bobcallaway authored Sep 7, 2024
1 parent 4decbe6 commit efa4d00
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions modules/MobileNavigation/MobileNavigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,18 @@
</span>
</a>
</li>
<li>
<a class="footer--nav-button mr-36 flex justify-between text-19 hover:text-purple-light h items-center" :class="[text]" target="_blank" href="https://status.sigstore.dev">
Status
<span class="ml-6 h-20">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 13V19C18 19.5304 17.7893 20.0391 17.4142 20.4142C17.0391 20.7893 16.5304 21 16 21H5C4.46957 21 3.96086 20.7893 3.58579 20.4142C3.21071 20.0391 3 19.5304 3 19V8C3 7.46957 3.21071 6.96086 3.58579 6.58579C3.96086 6.21071 4.46957 6 5 6H11" :stroke="[$route.params.slug === 'trust-security' ? '#ffffff' : '#444444']" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15 3H21V9" :stroke="[$route.params.slug === 'trust-security' ? '#ffffff' : '#444444']" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10 14L21 3" :stroke="[$route.params.slug === 'trust-security' ? '#ffffff' : '#444444']" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</a>
</li>
</ul>
<ul class="w-full p-60 border-t-2" :class="[bg != 'bg-purple-dark' ? 'border-gray-dark' : 'border-white']">
<li v-for="(navItem, index) in socialLinks" :key="index"
Expand Down
12 changes: 12 additions & 0 deletions modules/Navigation/Navigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,18 @@
</span>
</a>
</li>
<li>
<a class="mr-16 lg:mr-36 flex justify-between items-center" :class="[text]" target="_blank" href="https://status.sigstore.dev">
Status
<span class="ml-6 h-16">
<svg width="15" height="15" viewBox="0 0 24 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 13V19C18 19.5304 17.7893 20.0391 17.4142 20.4142C17.0391 20.7893 16.5304 21 16 21H5C4.46957 21 3.96086 20.7893 3.58579 20.4142C3.21071 20.0391 3 19.5304 3 19V8C3 7.46957 3.21071 6.96086 3.58579 6.58579C3.96086 6.21071 4.46957 6 5 6H11" :stroke="[$route.params.slug === 'trust-security' ? '#ffffff' : '#444444']" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15 3H21V9" :stroke="[$route.params.slug === 'trust-security' ? '#ffffff' : '#444444']" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10 14L21 3" :stroke="[$route.params.slug === 'trust-security' ? '#ffffff' : '#444444']" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</a>
</li>
<li>
<a :class="[text]" href="https://github.com/sigstore" target="_blank" title="GitHub profile link">
<GitHubLogo :class="[$route.params.slug === 'trust-security' ? 'fill-white' : 'fill-black']" />
Expand Down

0 comments on commit efa4d00

Please sign in to comment.