feat(web): scaffold Next.js 16 dashboard with design system and auth client (#82)
Co-authored-by: Jason Woltje <jason@diversecanvas.com> Co-committed-by: Jason Woltje <jason@diversecanvas.com>
This commit was merged in pull request #82.
This commit is contained in:
8
apps/web/src/app/(dashboard)/chat/page.tsx
Normal file
8
apps/web/src/app/(dashboard)/chat/page.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
export default function ChatPage(): React.ReactElement {
|
||||
return (
|
||||
<div>
|
||||
<h1 className="text-2xl font-semibold">Chat</h1>
|
||||
<p className="mt-2 text-text-secondary">Conversations will appear here.</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
6
apps/web/src/app/(dashboard)/layout.tsx
Normal file
6
apps/web/src/app/(dashboard)/layout.tsx
Normal file
@@ -0,0 +1,6 @@
|
||||
import type { ReactNode } from 'react';
|
||||
import { AppShell } from '@/components/layout/app-shell';
|
||||
|
||||
export default function DashboardLayout({ children }: { children: ReactNode }): React.ReactElement {
|
||||
return <AppShell>{children}</AppShell>;
|
||||
}
|
||||
Reference in New Issue
Block a user