29 lines
780 B
Text
29 lines
780 B
Text
---
|
|
import Layout from "../../layouts/Layout.astro";
|
|
import Footer from "../../components/Footer.astro";
|
|
import Back from "../../components/Back.astro";
|
|
import GithubStats from "astro-github-stats";
|
|
---
|
|
|
|
<Layout title="Ayo Ayco | Showcase | Astro Github Stats">
|
|
<main>
|
|
<Back url="/showcase" />
|
|
<h1>Astro GitHub Stats ✨</h1>
|
|
<GithubStats username="ayoayco" />
|
|
<GithubStats username="withastro" repo="astro" />
|
|
<h2>Links</h2>
|
|
<ol>
|
|
<li>
|
|
GitHub repo: <a href="https://github.com/ayoayco/astro-github-stats"
|
|
>astro-github-stats</a
|
|
>
|
|
</li>
|
|
<li>
|
|
NPM registry: <a href="https://npmjs.org/astro-github-stats"
|
|
>astro-github-stats</a
|
|
>
|
|
</li>
|
|
</ol>
|
|
<Footer />
|
|
</main>
|
|
</Layout>
|