Skip to content

Commit

Permalink
update readme header, add easy link for discord server
Browse files Browse the repository at this point in the history
  • Loading branch information
danstepanov committed Nov 20, 2023
1 parent a117baf commit 8250a4a
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
15 changes: 14 additions & 1 deletion cli/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Create Expo Stack CLI

<a href="https://badge.fury.io/js/create-expo-stack"><img src="https://badge.fury.io/js/create-expo-stack.svg" alt="npm version" height="18"></a>
[![Discord](https://img.shields.io/discord/1173879003191459860?color=%235865F2&label=Discord&logo=discord&logoColor=%23fff)](https://expostack.dev/discord) [![NPM version][npm-image]][npm-url]
[![Downloads][downloads-image]][npm-url]

<p align="center">
An interactive CLI to create a highly configurable, typesafe Expo app.
</p>

<p align="center">
Get started with by running <code>npx create-expo-stack@latest</code>
</p>

## Description

Expand Down Expand Up @@ -157,3 +166,7 @@ Thanks go to these wonderful people:
</tr>
</tbody>
</table>

[downloads-image]: https://img.shields.io/npm/dm/create-expo-stack?color=364fc7&logoColor=364fc7
[npm-url]: https://www.npmjs.com/package/create-expo-stack
[npm-image]: https://img.shields.io/npm/v/create-expo-stack?color=0b7285&logoColor=0b7285
9 changes: 9 additions & 0 deletions www/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
const nextConfig = {
images: {
domains: ['avatars.githubusercontent.com']
},
async redirects() {
return [
{
source: '/discord',
destination: 'https://discord.gg/2EnARBCR',
permanent: true
}
]
}
};

Expand Down
4 changes: 2 additions & 2 deletions www/src/app/components/Foot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default function Firebase() {
</a>
<a
className="group p-1 hover:underline decoration-wavy underline-offset-1 hover:underline-offset-4 duration-300"
href="https://discord.gg/2EnARBCR"
href="https://expostack.dev/discord"
>
<svg
role="img"
Expand Down Expand Up @@ -88,7 +88,7 @@ export default function Firebase() {
</a>
<a
className="group p-1 hover:underline decoration-wavy underline-offset-1 hover:underline-offset-4 duration-300"
href="https://discord.gg/2EnARBCR"
href="https://expostack.dev/discord"
>
<div className="group-hover:text-white group-hover:-translate-x-2 duration-300">Discord</div>
</a>
Expand Down

0 comments on commit 8250a4a

Please sign in to comment.