From 4d4cdee9eb2ef4b68a6b31824da4567e2bd3c54b Mon Sep 17 00:00:00 2001 From: belisards Date: Sun, 3 May 2026 16:11:12 -0300 Subject: [PATCH] wip: in-progress mars theme work (saved before auth refactor) --- app/[slug]/page.tsx | 6 ---- app/admin/page.tsx | 3 -- app/globals.css | 57 --------------------------------- app/layout.tsx | 3 +- app/lock/page.tsx | 3 -- app/page.tsx | 6 ---- components/footer.tsx | 55 -------------------------------- components/theme-provider.tsx | 59 ----------------------------------- 8 files changed, 1 insertion(+), 191 deletions(-) delete mode 100644 components/footer.tsx delete mode 100644 components/theme-provider.tsx diff --git a/app/[slug]/page.tsx b/app/[slug]/page.tsx index 090afae..45b5d3d 100644 --- a/app/[slug]/page.tsx +++ b/app/[slug]/page.tsx @@ -5,7 +5,6 @@ import { useParams } from 'next/navigation'; import DOMPurify from 'dompurify'; import { wishlistsApi, itemsApi, claimingApi, type Wishlist, type Item } from '@/lib/api'; import Header from '@/components/header'; -import Footer from '@/components/footer'; import PasswordLockGuard from '@/components/password-lock-guard'; export default function PublicWishlistPage() { @@ -285,9 +284,6 @@ export default function PublicWishlistPage() { ) : item.claimedAt ? (
-

- Reservado por {item.claimedByName} -

{item.claimedByNote && (

Nota: {item.claimedByNote} @@ -357,8 +353,6 @@ export default function PublicWishlistPage() { )}

- -