2022-03-30 23:01:24 -04:00
|
|
|
import Header from "@components/header"
|
|
|
|
import { Note, Page, Text } from "@geist-ui/core"
|
2022-04-09 20:48:19 -04:00
|
|
|
import styles from "@styles/Home.module.css"
|
2022-03-30 23:01:24 -04:00
|
|
|
|
|
|
|
const Expired = () => {
|
2022-04-09 20:48:19 -04:00
|
|
|
return (
|
|
|
|
<Page>
|
|
|
|
<Page.Content className={styles.main}>
|
|
|
|
<Note type="error" label={false}>
|
|
|
|
<Text h4>
|
|
|
|
Error: The Drift you're trying to view has expired.
|
|
|
|
</Text>
|
|
|
|
</Note>
|
|
|
|
</Page.Content>
|
|
|
|
</Page>
|
|
|
|
)
|
2022-03-30 23:01:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Expired
|