mirror of
https://github.com/documenso/documenso.git
synced 2025-11-14 00:32:43 +10:00
feat: add organisations (#1820)
This commit is contained in:
31
apps/remix/app/routes/_authenticated+/inbox.tsx
Normal file
31
apps/remix/app/routes/_authenticated+/inbox.tsx
Normal file
@ -0,0 +1,31 @@
|
||||
import { Trans } from '@lingui/react/macro';
|
||||
import { InboxIcon } from 'lucide-react';
|
||||
|
||||
import { OrganisationInvitations } from '~/components/general/organisations/organisation-invitations';
|
||||
import { InboxTable } from '~/components/tables/inbox-table';
|
||||
import { appMetaTags } from '~/utils/meta';
|
||||
|
||||
export function meta() {
|
||||
return appMetaTags('Personal Inbox');
|
||||
}
|
||||
|
||||
export default function InboxPage() {
|
||||
return (
|
||||
<div className="mx-auto w-full max-w-screen-xl px-4 md:px-8">
|
||||
<div className="mb-8">
|
||||
<h1 className="flex flex-row items-center gap-2 text-3xl font-bold">
|
||||
<InboxIcon className="text-muted-foreground h-8 w-8" />
|
||||
|
||||
<Trans>Personal Inbox</Trans>
|
||||
</h1>
|
||||
<p className="text-muted-foreground mt-1">
|
||||
<Trans>Any documents that you have been invited to will appear here</Trans>
|
||||
</p>
|
||||
|
||||
<OrganisationInvitations className="mt-4" />
|
||||
</div>
|
||||
|
||||
<InboxTable />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user