Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions app/(main)/board/[id]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
const BoardPage = () => {
// TODO: Create the board here
return <div>BoardPage</div>;
};
export default BoardPage;
import Whiteboard from "@/components/whiteboard"

export default function Home() {
return (
<div className="flex h-screen flex-col">
<Whiteboard />
</div>
)
}

9 changes: 4 additions & 5 deletions app/globals.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
@import "tailwindcss";
@import "tw-animate-css";
@plugin "tailwindcss-animate";

@custom-variant dark (&:is(.dark *));

Expand Down Expand Up @@ -46,7 +45,7 @@

:root {
--radius: 0.625rem;
--background: oklch(1 0 0);
--background: oklch(0.96 0.005 0); /* Light gray */
--foreground: oklch(0.145 0 0);
--card: oklch(1 0 0);
--card-foreground: oklch(0.145 0 0);
Expand All @@ -61,9 +60,9 @@
--accent: oklch(0.97 0 0);
--accent-foreground: oklch(0.205 0 0);
--destructive: oklch(0.577 0.245 27.325);
--border: oklch(0.922 0 0);
--input: oklch(0.922 0 0);
--ring: oklch(0.708 0 0);
--border: oklch(0.94 0 0); /* Lighter border */
--input: oklch(0.94 0 0); /* Lighter input */
--ring: oklch(0.85 0 0); /* Lighter ring */
--chart-1: oklch(0.646 0.222 41.116);
--chart-2: oklch(0.6 0.118 184.704);
--chart-3: oklch(0.398 0.07 227.392);
Expand Down
Loading