2022-04-20 04:52:07 -04:00
|
|
|
import { Button, Divider, Text, Fieldset, Input, Page, Note, Textarea } from "@geist-ui/core"
|
2022-04-20 01:14:08 -04:00
|
|
|
import PageSeo from "@components/page-seo"
|
|
|
|
import styles from "@styles/Home.module.css"
|
|
|
|
import SettingsPage from "@components/settings"
|
|
|
|
|
|
|
|
const Settings = () => (
|
2022-04-20 04:52:07 -04:00
|
|
|
<Page width={"100%"}>
|
|
|
|
<PageSeo title="Drift - Settings" />
|
|
|
|
<Page.Content className={styles.main} style={{ gap: 'var(--gap)', display: 'flex', flexDirection: 'column' }}>
|
|
|
|
<SettingsPage />
|
|
|
|
</Page.Content>
|
|
|
|
</Page>
|
2022-04-20 01:14:08 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
export default Settings
|