40 lines
1,001 B
Text
40 lines
1,001 B
Text
---
|
|
import Layout from '../../layouts/Layout.astro'
|
|
import Footer from '../../components/Footer.astro'
|
|
import GithubStats from 'astro-github-stats'
|
|
---
|
|
|
|
<Layout
|
|
title="Astro Github Stats"
|
|
description="Embed GitHub stats on your Astro page"
|
|
>
|
|
<main>
|
|
<h1>Astro GitHub Stats</h1>
|
|
<p>Embed GitHub stats on your Astro page</p>
|
|
<ul>
|
|
<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>
|
|
</ul>
|
|
|
|
<h2>Account Stats</h2>
|
|
<GithubStats username="ayoayco" />
|
|
|
|
<h2>Account Top Languages</h2>
|
|
<GithubStats username="ayoayco" topLanguages={true} />
|
|
|
|
<h2>Repo card</h2>
|
|
<GithubStats username="withastro" repo="astro" />
|
|
|
|
<h2>Account Stats with Icons</h2>
|
|
<GithubStats username="ayoayco" showIcons={true} />
|
|
</main>
|
|
<Footer />
|
|
</Layout>
|