Skip to content

Commit

Permalink
feat: Make external links themeable with Chakra UI (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
tundera authored Nov 18, 2021
1 parent 2c2e10d commit ff4fe13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/create-bison-app/template/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Center, Flex, Text } from '@chakra-ui/layout';
import { Center, Flex, Text, Link } from '@chakra-ui/layout';

import { Logo } from './Logo';

Expand All @@ -11,9 +11,9 @@ export function Footer() {
<Logo />
<Text as="em" textAlign="center">
Copyright Ⓒ {year}{' '}
<a href="https://echobind.com" target="_blank" rel="noopener noreferrer">
<Link href="https://echobind.com" isExternal>
Echobind LLC.
</a>{' '}
</Link>{' '}
All rights reserved.
</Text>
</Flex>
Expand Down

0 comments on commit ff4fe13

Please sign in to comment.