forked from koshikraj/ottopus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.tsx
More file actions
21 lines (19 loc) · 657 Bytes
/
Copy pathpage.tsx
File metadata and controls
21 lines (19 loc) · 657 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { Otto } from '@/components/brand'
import { PageColumn, PageHeader } from '@/components/shell'
import { EmptyState } from '@/components/ui'
export const metadata = { title: 'Activity · Ottopus' }
/** #26 fills this. */
export default function Activity() {
return (
<PageColumn>
<PageHeader title="Activity" detail="Everything that has been decided." />
<div className="px-5 py-10 sm:px-[26px]">
<EmptyState
title="Nothing yet"
description="Signed, rejected and expired plans land here."
illustration={<Otto pose="base" size={150} animated />}
/>
</div>
</PageColumn>
)
}