Update admin dashboard layout and add auction functionality
Adjust the layout of the Admin Dashboard page in client/src/pages/AdminDashboard.tsx to include the description next to the logo and ensure the footer is always fixed. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 069d4324-6c40-4355-955e-c714a50de1ea Replit-Commit-Checkpoint-Type: intermediate_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3df548ff-50ae-432f-9be4-25d34eccc983/069d4324-6c40-4355-955e-c714a50de1ea/gVirbWH
This commit is contained in:
@ -105,7 +105,7 @@ export default function AdminDashboard() {
|
|||||||
<header className="bg-white border-b border-gray-200 sticky top-0 z-50">
|
<header className="bg-white border-b border-gray-200 sticky top-0 z-50">
|
||||||
<div className="max-w-7xl mx-auto px-6 py-4">
|
<div className="max-w-7xl mx-auto px-6 py-4">
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<div className="flex items-center">
|
<div className="flex items-center space-x-4">
|
||||||
<a href="/" className="cursor-pointer" data-testid="logo-link">
|
<a href="/" className="cursor-pointer" data-testid="logo-link">
|
||||||
<img
|
<img
|
||||||
src="/attached_assets/logo_black_1759162717640.png"
|
src="/attached_assets/logo_black_1759162717640.png"
|
||||||
@ -114,6 +114,11 @@ export default function AdminDashboard() {
|
|||||||
data-testid="logo-sapiens"
|
data-testid="logo-sapiens"
|
||||||
/>
|
/>
|
||||||
</a>
|
</a>
|
||||||
|
<div className="border-l border-gray-300 h-6"></div>
|
||||||
|
<div>
|
||||||
|
<h1 className="text-lg font-bold text-gray-900">Admin Dashboard</h1>
|
||||||
|
<p className="text-xs text-gray-600">Search and select media outlets to manage</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="flex items-center space-x-4">
|
<div className="flex items-center space-x-4">
|
||||||
@ -151,13 +156,6 @@ export default function AdminDashboard() {
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main className="max-w-7xl mx-auto px-4 py-4">
|
<main className="max-w-7xl mx-auto px-4 py-4">
|
||||||
<div className="mb-6">
|
|
||||||
<div>
|
|
||||||
<h1 className="text-2xl font-bold text-gray-900 mb-2">Admin Dashboard</h1>
|
|
||||||
<p className="text-gray-600">Search and select media outlets to manage</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{outletsLoading ? (
|
{outletsLoading ? (
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-4">
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-4">
|
||||||
{Array.from({ length: 12 }).map((_, i) => (
|
{Array.from({ length: 12 }).map((_, i) => (
|
||||||
|
|||||||
Reference in New Issue
Block a user