diff --git a/README.md b/README.md index 00d4d9b693..f2e36810f8 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ We are using the following tools: - [Chakra UI](https://chakra-ui.com/) - simple, modular & accessible UI components for React - Functional Components with [Hooks](https://reactjs.org/docs/hooks-intro.html) - [Jest](https://jestjs.io/) - for writing unit tests. -- [Cypress](https://www.cypress.io/) - to check if specific actions are possible to preform in certain scenarios. +- [Cypress](https://www.cypress.io/) - to check if specific actions are possible to perform in certain scenarios. For more information and a guide to working on features, go to the [contributing docs](/CONTRIBUTING.md#adding-a-new-feature). diff --git a/client/src/modules/chapters/pages/chaptersPage.tsx b/client/src/modules/chapters/pages/chaptersPage.tsx index 67eab1c37a..18b4cd3351 100644 --- a/client/src/modules/chapters/pages/chaptersPage.tsx +++ b/client/src/modules/chapters/pages/chaptersPage.tsx @@ -1,7 +1,7 @@ import { Heading, VStack, Stack } from '@chakra-ui/layout'; import { NextPage } from 'next'; import React from 'react'; - +import { Grid, GridItem } from '@chakra-ui/react'; import { ChapterCard } from 'components/ChapterCard'; import { useChaptersQuery } from 'generated/graphql'; @@ -20,16 +20,19 @@ export const ChaptersPage: NextPage = () => { ); } - return ( Chapters: - {data.chapters.map((chapter) => ( - - - - ))} + + {data.chapters.map((chapter) => ( + + + + + + ))} + );