Skip to content

Commit

Permalink
refactor: import Heading instead of Text from chakra-ui for rendering h1
Browse files Browse the repository at this point in the history
  • Loading branch information
yiremorlans committed Jun 12, 2023
1 parent f3800b7 commit 731046c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/atoms/logo/logo.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import Link from "components/atoms/link/link";
import { Text } from "@chakra-ui/react";
import { Heading } from "@chakra-ui/react";

const Logo = () => {
return (
<Link href="/">
<Text fontSize="2xl" className="logo">
<Heading as="h1" fontSize="1.5em" fontFamily="HirukoPro-Black" className="logo">
TechIsHiring
</Text>
</Heading>
</Link>
);
};
Expand Down

0 comments on commit 731046c

Please sign in to comment.