Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove from footer #90

Merged
merged 1 commit into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
Loading