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

feat(front): remove alpha version #16

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions client/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ export default function Footer({ mt = 5 }) {
<Li mt={[2, 1]}>
<Link href="/legal-notice">LEGAL NOTICE</Link>
</Li>
<Li mt={[2, 1]}>
<Link href="https://airtable.com/shryDaSBKJZrun8Re">YOUR FEEDBACK IS WELCOME</Link>
</Li>
</Ul>
</Layout>
</Container>
Expand Down
16 changes: 1 addition & 15 deletions client/components/Nav.tsx
Original file line number Diff line number Diff line change
@@ -1,26 +1,13 @@
/* eslint-disable jsx-a11y/anchor-is-valid */
import React from "react"
import Link from "next/link"
import { flexbox, layout, padding, space, typography } from "styled-system"
import { flexbox, layout, space, typography } from "styled-system"
import { useTheme } from "@emotion/react"
import { Fragment } from "react"
import styled from "@emotion/styled"

const Nav = ({ mt = 4 }) => {
const theme = useTheme()
return (
<Fragment>
<Banner>
This is an alpha version for testing purposes, it's not final and may contain errors.{" "}
<a
target="_blank"
rel="noopener noreferrer"
href="https://airtable.com/shryDaSBKJZrun8Re"
style={{ textDecoration: "underline" }}
>
Your feedback is welcome.
</a>
</Banner>
<div>
<Container
flexDirection={["column", "row"]}
Expand Down Expand Up @@ -51,7 +38,6 @@ const Nav = ({ mt = 4 }) => {
</Ul>
</Container>
</div>
</Fragment>
)
}
const Ul = styled.ul`
Expand Down