mirror of
https://github.com/System-End/site.git
synced 2026-04-19 23:22:49 +00:00
Add meta title for /bank/apply
This commit is contained in:
parent
7ecd6dbda0
commit
f13551d0d5
1 changed files with 20 additions and 15 deletions
|
|
@ -1,23 +1,28 @@
|
|||
import BankApplyForm from '../../components/bank/form'
|
||||
import { Box, Container, Card } from 'theme-ui'
|
||||
import ForceTheme from '../../components/force-theme'
|
||||
import Head from 'next/head'
|
||||
import Meta from '@hackclub/meta'
|
||||
|
||||
export default function Apply() {
|
||||
return (
|
||||
<Box
|
||||
sx={{
|
||||
backgroundImage:
|
||||
'linear-gradient(to bottom,rgba(0, 0, 0, .3),rgba(0, 0, 0, 0.45) 25%,rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.7) 100%), url("https://cloud-knk7z9mq5-hack-club-bot.vercel.app/0geo-pattern__2_.svg")',
|
||||
py: 4,
|
||||
backgroundAttachment: 'fixed'
|
||||
}}
|
||||
>
|
||||
<ForceTheme theme="dark" />
|
||||
<Container variant="copy">
|
||||
<Card variant="primary">
|
||||
<BankApplyForm />
|
||||
</Card>
|
||||
</Container>
|
||||
</Box>
|
||||
<>
|
||||
<Meta as={Head} title="Apply for Hack Club Bank" />
|
||||
<Box
|
||||
sx={{
|
||||
backgroundImage:
|
||||
'linear-gradient(to bottom,rgba(0, 0, 0, .3),rgba(0, 0, 0, 0.45) 25%,rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.7) 100%), url("https://cloud-knk7z9mq5-hack-club-bot.vercel.app/0geo-pattern__2_.svg")',
|
||||
py: 4,
|
||||
backgroundAttachment: 'fixed'
|
||||
}}
|
||||
>
|
||||
<ForceTheme theme="dark" />
|
||||
<Container variant="copy">
|
||||
<Card variant="primary">
|
||||
<BankApplyForm />
|
||||
</Card>
|
||||
</Container>
|
||||
</Box>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue