diff options
| author | Pinapelz <yukais@pinapelz.com> | 2026-06-03 19:25:55 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-06-03 19:25:55 -0700 |
| commit | 470adff2f38e66411255977c9d467abbf2098e9c (patch) | |
| tree | d0c9b77daf8a4e34f12109fe621dfbc78ea49c8c | |
| parent | e54a03e1329bd4711203ec8d49afcc1b095796af (diff) | |
make logo redirect to home
| -rw-r--r-- | src/components/Header/index.styled.ts | 2 | ||||
| -rw-r--r-- | src/components/Header/index.tsx | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/components/Header/index.styled.ts b/src/components/Header/index.styled.ts index af38065..3fdd4b5 100644 --- a/src/components/Header/index.styled.ts +++ b/src/components/Header/index.styled.ts @@ -22,7 +22,7 @@ export const Content = styled.div` } } - a { color: ${({ theme }) => theme.text}; } + a { text-decoration: none; color: ${({ theme }) => theme.text}; } `; export const Logo = styled.h1` diff --git a/src/components/Header/index.tsx b/src/components/Header/index.tsx index 9f199fc..ba3c70b 100644 --- a/src/components/Header/index.tsx +++ b/src/components/Header/index.tsx @@ -18,8 +18,9 @@ export function Header({ openInfoPopUp }: Props) { width={30} height={30} /> + <a href="/"> <Styled.Logo>{appName}</Styled.Logo> - <a href="#"></a> + </a> </Styled.Content> </Styled.Container> ); |
