feat: updates

This commit is contained in:
Nazareno Oviedo 2022-04-13 14:47:11 -03:00
parent eeab609e7b
commit 47667660a2
2 changed files with 3 additions and 4 deletions

View File

@ -63,9 +63,10 @@ const SimpleForm = ({
<div dangerouslySetInnerHTML={{ __html: message }} />
)}
<input
ref={(node) => (input = node)}
type="email"
placeholder="Enter your email to stay updated"
ref={(node) => (input = node)}
required
type="email"
/>
<button onClick={submit}>
<ArrowLink />

View File

@ -8,7 +8,6 @@ import { QueryClient, QueryClientProvider } from 'react-query'
import { Footer } from '~/components/common/footer'
import { Header } from '~/components/common/header'
import Mouse from '~/components/common/mouse'
import { AnimationContextProvider } from '~/context/animation'
import { basementLog, isProd } from '~/lib/constants'
import { FontsReadyScript } from '~/lib/font-scripts'
@ -64,7 +63,6 @@ const App = ({ Component, pageProps, ...rest }: AppProps) => {
<GAScripts />
<FontsReadyScript />
<Header />
<Mouse />
{getLayout({ Component, pageProps, ...rest })}
<Footer />
</AnimationContextProvider>