You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Drift/client/app/(posts)/expired/page.tsx

12 lines
241 B
TypeScript

"use client"
import { Note, Text } from "@geist-ui/core/dist"
export default function ExpiredPage() {
return (
<Note type="error" label={false}>
<Text h4>Error: The Drift you&apos;re trying to view has expired.</Text>
</Note>
)
}