Skip to content

Commit

Permalink
feat: improve SEO
Browse files Browse the repository at this point in the history
  • Loading branch information
zaldih committed Nov 15, 2023
1 parent 058b86e commit 6bf9e3b
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 18 deletions.
8 changes: 7 additions & 1 deletion css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ kbd {
border-radius: 5px;
padding: 0 3px;
}


.title-container{
display: grid;
grid-template-columns: 1fr auto 1fr;
gap: 12px;
}

.devs img {
border-radius: 13px;
}
Expand Down
52 changes: 35 additions & 17 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,15 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>npkill - main</title>
<meta
name="keywords"
content="node_modules, npm, nodejs, tool, optimization, interactive, javascript, typescript"
/>
<meta
name="description"
content="List any node_modules 📦 dir in your system and how heavy they are. You can then select which ones you want to erase to free up space 🧹."
/>
<title>NPKILL - Maintain your development workspace clean.</title>
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="apple-touch-icon" type="image/png" href="favicon.png" />
<link
Expand Down Expand Up @@ -66,14 +74,15 @@
alt="npkill logo"
class="is-inline-flex"
/>
<p class="title is-1">
npkill

<div class="title-container">
<span></span>
<h1 class="title is-1">npkill</h1>
<img
style="position: absolute; margin-left: 10px"
alt="npm version"
alt="package version"
src="https://img.shields.io/npm/v/npkill?label=%20&style=flat-square"
/>
</p>
</div>

<div class="columns">
<div class="subtitle column is-half is-offset-one-quarter">
Expand Down Expand Up @@ -135,9 +144,13 @@ <h2 class="title">First Steps</h2>
</p>
<p>
This will start the search
<img src="./img/Blocks-loading.svg" style="height: 1.3em" /> and
will show the node_modules directories next to their size and the
age of the workspace.
<img
src="./img/Blocks-loading.svg"
style="height: 1.3em"
alt="loading symbol"
/>
and will show the node_modules directories next to their size and
the age of the workspace.
</p>
</div>
<div class="column is-two-fifths">
Expand Down Expand Up @@ -473,14 +486,16 @@ <h2 class="title is-2">

<footer class="footer">
<div class="content has-text-centered">
<img class="npkill-title" src="img/npkill-text-outlined.svg" />
<img
class="npkill-title"
src="img/npkill-text-outlined.svg"
alt="npkill text logo"
/>
<p>
<img alt="npm" src="https://img.shields.io/npm/dy/npkill.svg" />
<a
href="https://www.codacy.com/app/zaldih/npkill?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=zaldih/npkill&amp;utm_campaign=Badge_Grade"
><img
src="https://api.codacy.com/project/badge/Grade/b8ba5eb6cba4413eb474921dcc460f34"
/></a>
<img
alt="npm year downloads"
src="https://img.shields.io/npm/dy/npkill.svg"
/>
<a
href="https://github.com/voidcosmos/npkill#coffee-buy-us-a-coffee"
target="_black"
Expand All @@ -494,7 +509,10 @@ <h2 class="title is-2">
src="https://img.shields.io/npm/v/npkill.svg"
/>
<!-- <img alt="npm bundle size" src="https://img.shields.io/bundlephobia/min/npkill.svg"> -->
<img alt="NPM" src="https://img.shields.io/npm/l/npkill.svg" />
<img
alt="MIT license"
src="https://img.shields.io/npm/l/npkill.svg"
/>
</p>

<p>Made with <i class="fas fa-heart" style="color: red"></i></p>
Expand Down

0 comments on commit 6bf9e3b

Please sign in to comment.