Skip to content

Commit

Permalink
Remove from footer
Browse files Browse the repository at this point in the history
  • Loading branch information
chasefleming committed Feb 27, 2024
1 parent 84519ad commit f5f6170
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 29 deletions.
29 changes: 1 addition & 28 deletions components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/** @jsxImportSource theme-ui */

import {TANOOKI_LABS_URL} from "lib/constants"
import {Box, Container, Flex, Link, ThemeUICSSObject} from "theme-ui"
import {Container, Flex, ThemeUICSSObject} from "theme-ui"

export default function Footer() {
const styles: Record<string, ThemeUICSSObject> = {
Expand All @@ -24,10 +23,6 @@ export default function Footer() {
alignItems: "center",
flexDirection: ["column", "row"],
},
tanookiLabsLink: {
borderBottom: "1px solid",
borderColor: "gray.200",
},
}

return (
Expand All @@ -37,28 +32,6 @@ export default function Footer() {
<Flex mr={[0, "auto"]} mb={[2, 0]}>
{`Copyright © ${new Date().getFullYear()} Flow Foundation.`}
</Flex>
<Flex sx={styles.right}>
<Box>
Design & Development by{" "}
<Link
variant="white"
href={TANOOKI_LABS_URL}
target="_blank"
sx={styles.tanookiLabsLink}
>
Tanooki Labs
</Link>
</Box>
<Box ml={2}>
<Link href={TANOOKI_LABS_URL} target="blank">
<img
srcSet="tanooki-labs.png, tanooki-labs@2x.png 2x, tanooki-labs@3x.png 3x"
src="tanooki-labs.png"
alt="Tanooki Labs"
/>
</Link>
</Box>
</Flex>
</Flex>
</Container>
</div>
Expand Down
1 change: 0 additions & 1 deletion lib/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export const ACCOUNTS_KEYS_DOCS_URL =
"https://developers.flow.com/concepts/start-here/accounts-and-keys"
export const H_CAPTCHA_URL = "https://www.hcaptcha.com/"
export const FAUCET_GITHUB_URL = "https://www.github.com/onflow/faucet/issues"
export const TANOOKI_LABS_URL = "https://tanookilabs.com/"
export const DISCORD_URL = "https://discord.gg/flow"

export const PUBLIC_KEY_FORMAT_ERROR =
Expand Down
Binary file removed public/tanooki-labs.png
Binary file not shown.
Binary file removed public/tanooki-labs@2x.png
Binary file not shown.
Binary file removed public/tanooki-labs@3x.png
Binary file not shown.

0 comments on commit f5f6170

Please sign in to comment.