From d337425a308235da33a8c5d802e58339467efebd Mon Sep 17 00:00:00 2001 From: Chneemann Date: Wed, 19 Aug 2026 04:43:03 +0200 Subject: [PATCH] refactor(layout): standardize container width and responsiveness across pages --- app/(app)/dashboard/Board.tsx | 2 +- app/(app)/member/[id]/page.tsx | 2 +- app/(app)/tasks/page.tsx | 2 +- app/components/layout/Footer.tsx | 2 +- app/imprint/page.tsx | 2 +- app/privacy/page.tsx | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/(app)/dashboard/Board.tsx b/app/(app)/dashboard/Board.tsx index 90fcd0b..172f382 100644 --- a/app/(app)/dashboard/Board.tsx +++ b/app/(app)/dashboard/Board.tsx @@ -98,7 +98,7 @@ export default function Board({ tasks }: { tasks: Task[] }) {
{/* Columns Grid */} -
+
{COLUMNS.map((col) => { const columnTasks = tasks.filter((t) => t.status === col.id); return ( diff --git a/app/(app)/member/[id]/page.tsx b/app/(app)/member/[id]/page.tsx index 2a3c41f..427eb99 100644 --- a/app/(app)/member/[id]/page.tsx +++ b/app/(app)/member/[id]/page.tsx @@ -37,7 +37,7 @@ export default async function MemberDetailPage({ } return ( -
+
diff --git a/app/(app)/tasks/page.tsx b/app/(app)/tasks/page.tsx index b7f3ffc..a96b136 100644 --- a/app/(app)/tasks/page.tsx +++ b/app/(app)/tasks/page.tsx @@ -59,7 +59,7 @@ export default async function TaskPage({ searchParams }: TaskPageProps) { .where(not(eq(usersTable.id, session.user.id))); return ( -
+
-
+
{/* Left: Copyright Notice */}

{COPYRIGHT_TEXT(currentYear)} diff --git a/app/imprint/page.tsx b/app/imprint/page.tsx index 46be137..2c386e2 100644 --- a/app/imprint/page.tsx +++ b/app/imprint/page.tsx @@ -14,7 +14,7 @@ import { GoBackButton } from "../components/ui/buttons/GoBackButton"; export default async function ImprintPage() { return (

-
+

Legal Notice.

diff --git a/app/privacy/page.tsx b/app/privacy/page.tsx index 8c95a96..e8b1e4c 100644 --- a/app/privacy/page.tsx +++ b/app/privacy/page.tsx @@ -14,7 +14,7 @@ import { GoBackButton } from "../components/ui/buttons/GoBackButton"; export default async function PrivacyPage() { return (
-
+

Privacy Policy.