wip: in-progress mars theme work (saved before auth refactor)

This commit is contained in:
belisards
2026-05-03 16:11:12 -03:00
parent 282e475562
commit 4d4cdee9eb
8 changed files with 1 additions and 191 deletions

View File

@@ -5,7 +5,6 @@ import ProtectedRoute from '@/components/protected-route';
import { useAuth } from '@/lib/auth-context';
import { wishlistsApi, itemsApi, settingsApi, type Wishlist, type Settings } from '@/lib/api';
import Header from '@/components/header';
import Footer from '@/components/footer';
import Link from 'next/link';
import StatsGrid from '@/components/admin/StatsGrid';
import SettingsSection from '@/components/admin/SettingsSection';
@@ -230,8 +229,6 @@ export default function AdminPage() {
onCreate={handleCreateWishlist}
error={createError}
/>
<Footer />
</div>
</ProtectedRoute>
);