New schema for pixels and links.

This commit is contained in:
Mike Cao 2025-08-13 20:27:54 -07:00
parent c60e8b3d23
commit 88639dfe83
67 changed files with 993 additions and 208 deletions

View file

@ -2,8 +2,7 @@
import { PageBody } from '@/components/common/PageBody';
import { Column } from '@umami/react-zen';
import { PageHeader } from '@/components/common/PageHeader';
import { BoardAddButton } from '@/app/(main)/boards/BoardAddButton';
import Link from 'next/link';
import { PixelAddButton } from './PixelAddButton';
import { useMessages } from '@/components/hooks';
export function PixelsPage() {
@ -13,11 +12,8 @@ export function PixelsPage() {
<PageBody>
<Column>
<PageHeader title={formatMessage(labels.pixels)}>
<BoardAddButton />
<PixelAddButton />
</PageHeader>
<Link href="/teams/3a97e34a-7f9d-4de2-8754-ed81714b528d/boards/86d4095c-a2a8-4fc8-9521-103e858e2b41">
Board 1
</Link>
</Column>
</PageBody>
);