Skip to content

Commit

Permalink
dependencies update
Browse files Browse the repository at this point in the history
  • Loading branch information
juliancwirko committed Oct 9, 2022
1 parent b80122f commit 3d725d0
Show file tree
Hide file tree
Showing 5 changed files with 2,309 additions and 2,026 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### [2.2.0](https://github.com/ElrondDevGuild/nextjs-dapp-template/releases/tag/v2.2.0) (2022-10-09)
- dependencies updates (Next, erdjs, etc.)

### [2.1.0](https://github.com/ElrondDevGuild/nextjs-dapp-template/releases/tag/v2.1.0) (2022-09-04)
- new `useApiCall` hook, check the readme for more info

Expand Down
24 changes: 21 additions & 3 deletions components/ui/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Container, Box, Text } from '@chakra-ui/react';
import { Container, Box, Text, Stack } from '@chakra-ui/react';
import packageJson from '../../package.json';

export const Footer = () => {
Expand All @@ -22,7 +22,12 @@ export const Footer = () => {
world about it. Attribution is not required but welcomed in the form
of a backlink.
</Box>
<Box fontSize="xs" fontWeight="bold">
<Stack
direction="row"
justifyContent="center"
fontSize="xs"
fontWeight="bold"
>
<Text
as="a"
color="dappTemplate.color3.base"
Expand All @@ -32,7 +37,20 @@ export const Footer = () => {
>
{"Elrond's Dev Guild"}
</Text>
</Box>
<Text ml={2} mr={2}>
{' '}
|{' '}
</Text>
<Text
as="a"
color="dappTemplate.color3.base"
href="https://www.julian.io"
target="_blank"
rel="noopener noreferrer nofollow"
>
{'julian.io'}
</Text>
</Stack>
</Container>
</Box>
);
Expand Down
17 changes: 7 additions & 10 deletions config/chakraTheme.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,4 @@
import { extendTheme } from '@chakra-ui/react';
import { createBreakpoints } from '@chakra-ui/theme-tools';

const breakpoints = createBreakpoints({
sm: '320px',
md: '768px',
lg: '960px',
xl: '1200px',
'2xl': '1560px',
});

export const theme = extendTheme({
styles: {
Expand Down Expand Up @@ -80,5 +71,11 @@ export const theme = extendTheme({
},
},
},
...breakpoints,
breakpoints: {
sm: '320px',
md: '768px',
lg: '960px',
xl: '1200px',
'2xl': '1560px',
},
});
Loading

0 comments on commit 3d725d0

Please sign in to comment.