Skip to content

Commit

Permalink
Merge pull request #623 from bandada-infra/chore/improve-client-app-h…
Browse files Browse the repository at this point in the history
…eader

Improve client app header
  • Loading branch information
vplasencia authored Dec 5, 2024
2 parents 5c8948b + fc4d5eb commit e9e7843
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ Run [ESLint](https://eslint.org/) to analyze the code and catch bugs:
yarn lint
```

Use [Prettier](https://prettier.io/) to check formatting rules:
Run [Prettier](https://prettier.io/) to check formatting rules:

```bash
yarn prettier
Expand Down
22 changes: 12 additions & 10 deletions apps/client/src/pages/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,16 +166,18 @@ export default function HomePage(): JSX.Element {
<Container maxW="container.md" pt="20" pb="20" px="8" centerContent>
<VStack spacing="20" pb="30px" w="100%">
<HStack mb="60px" justify="space-between" w="100%">
<HStack spacing="1">
<Image
src={icon1Image}
htmlWidth="32px"
alt="Bandada icon"
/>
<Heading fontSize="22px" as="h1">
bandada
</Heading>
</HStack>
<Link _hover={{ textDecoration: "none" }} href="/">
<HStack spacing="1">
<Image
src={icon1Image}
htmlWidth="32px"
alt="Bandada icon"
/>
<Heading fontSize="22px" as="h1">
bandada
</Heading>
</HStack>
</Link>

<HStack spacing="5">
<Link
Expand Down

0 comments on commit e9e7843

Please sign in to comment.