Skip to content

Commit

Permalink
Merge pull request #252 from akd-io/feature/add-shields-to-website
Browse files Browse the repository at this point in the history
Add shields to website
  • Loading branch information
akd-io committed Jun 15, 2023
2 parents bae8cd4 + af5c5b4 commit 0422bc2
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions apps/website/templates/LandingPage/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,35 @@ export const HeaderSection = () => {
The ultimate starter kit for Next.js
</Text>
</Flex>
<Flex gap="8px" wrap="wrap">
<a
aria-label="Last commit"
href="https://github.com/akd-io/create-next-stack/commits/develop"
>
<img
alt=""
src="https://img.shields.io/github/last-commit/akd-io/create-next-stack/develop?style=flat-square"
/>
</a>
<a
aria-label="License"
href="https://github.com/akd-io/create-next-stack/blob/develop/packages/create-next-stack/LICENSE"
>
<img
alt=""
src="https://img.shields.io/npm/l/create-next-stack?color=44cc11&style=flat-square"
/>
</a>
<a
aria-label="NPM version"
href="https://www.npmjs.com/package/create-next-stack"
>
<img
alt=""
src="https://img.shields.io/npm/v/create-next-stack?style=flat-square"
/>
</a>
</Flex>
<SocialIcons />
</Flex>
</Section>
Expand Down

0 comments on commit 0422bc2

Please sign in to comment.