From 2dcc20eb3a603ee69b9fce19b6cee81af318c397 Mon Sep 17 00:00:00 2001 From: DanielS Date: Fri, 3 Jul 2026 00:26:37 +0200 Subject: [PATCH] style: force dark mode globally and remove theme switcher --- shop/app/layout.tsx | 1 + shop/app/protected/layout.tsx | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/shop/app/layout.tsx b/shop/app/layout.tsx index 34444df..19acba9 100644 --- a/shop/app/layout.tsx +++ b/shop/app/layout.tsx @@ -33,6 +33,7 @@ export default function RootLayout({ diff --git a/shop/app/protected/layout.tsx b/shop/app/protected/layout.tsx index 99b0966..85bf8e6 100644 --- a/shop/app/protected/layout.tsx +++ b/shop/app/protected/layout.tsx @@ -1,7 +1,6 @@ import { DeployButton } from "@/components/deploy-button"; import { EnvVarWarning } from "@/components/env-var-warning"; import { AuthButton } from "@/components/auth-button"; -import { ThemeSwitcher } from "@/components/theme-switcher"; import { hasEnvVars } from "@/lib/utils"; import Link from "next/link"; import { Suspense } from "react"; @@ -47,7 +46,6 @@ export default function ProtectedLayout({ Supabase

-