Skip to content

Commit 0422bc2

Browse files
authored
Merge pull request #252 from akd-io/feature/add-shields-to-website
Add shields to website
2 parents bae8cd4 + af5c5b4 commit 0422bc2

File tree

1 file changed

+29
-0
lines changed
  • apps/website/templates/LandingPage/components

1 file changed

+29
-0
lines changed

apps/website/templates/LandingPage/components/Header.tsx

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,35 @@ export const HeaderSection = () => {
2727
The ultimate starter kit for Next.js
2828
</Text>
2929
</Flex>
30+
<Flex gap="8px" wrap="wrap">
31+
<a
32+
aria-label="Last commit"
33+
href="https://github.com/akd-io/create-next-stack/commits/develop"
34+
>
35+
<img
36+
alt=""
37+
src="https://img.shields.io/github/last-commit/akd-io/create-next-stack/develop?style=flat-square"
38+
/>
39+
</a>
40+
<a
41+
aria-label="License"
42+
href="https://github.com/akd-io/create-next-stack/blob/develop/packages/create-next-stack/LICENSE"
43+
>
44+
<img
45+
alt=""
46+
src="https://img.shields.io/npm/l/create-next-stack?color=44cc11&style=flat-square"
47+
/>
48+
</a>
49+
<a
50+
aria-label="NPM version"
51+
href="https://www.npmjs.com/package/create-next-stack"
52+
>
53+
<img
54+
alt=""
55+
src="https://img.shields.io/npm/v/create-next-stack?style=flat-square"
56+
/>
57+
</a>
58+
</Flex>
3059
<SocialIcons />
3160
</Flex>
3261
</Section>

0 commit comments

Comments
 (0)