Skip to content

Commit

Permalink
Seo and stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Hacksore committed Feb 16, 2024
1 parent 6a9b435 commit c3a0bb9
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
.DS_Store
node_modules
.turbo
.vercel
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "A utility for running JS apps with secrets from the 1Password CLI",
"scripts": {
"start": "turbo run start",
"build": "turbo run build",
"format": "turbo run format"
},
"keywords": [],
Expand Down
13 changes: 11 additions & 2 deletions www/src/components/badges.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
<div class="flex gap-2 mb-6">
<a href="https://crates.io/crates/opx" target="_blank" class="p-0">
<img class="m-0 p-0" src="https://img.shields.io/crates/v/opx" />
<img
class="m-0 p-0"
alt="crates.io badge"
src="https://img.shields.io/crates/v/opx"
/>
</a>
<a
href="https://github.com/Hacksore/opx/actions/workflows/ci.yaml"
Expand All @@ -9,10 +13,15 @@
>
<img
class="m-0 p-0"
alt="build status badge"
src="https://img.shields.io/github/actions/workflow/status/Hacksore/opx/ci.yaml"
/>
</a>
<a href="https://github.com/Hacksore/opx/LICENSE" target="_blank" class="p-0">
<img class="m-0 p-0" src="https://img.shields.io/crates/l/opx.svg" />
<img
class="m-0 p-0"
alt="license badge"
src="https://img.shields.io/crates/l/opx.svg"
/>
</a>
</div>
File renamed without changes.
2 changes: 1 addition & 1 deletion www/src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import Content from "../content/index.mdx";
import Content from "../components/index.mdx";
import CommonHead from "../components/common-head.astro";
import "../styles/prose.css";
---
Expand Down

0 comments on commit c3a0bb9

Please sign in to comment.