mirror of
https://github.com/christianvidalwolf-prog/Craze-Data-check.git
synced 2026-08-03 15:45:24 +02:00
style: integrate new logo and update theme to deep navy
This commit is contained in:
+2
-2
@@ -204,7 +204,7 @@ export default function App() {
|
|||||||
}, [appState.data]);
|
}, [appState.data]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="h-screen bg-slate-900 text-slate-200 flex flex-col font-sans overflow-hidden">
|
<div className="h-screen bg-[#040d1a] text-slate-200 flex flex-col font-sans overflow-hidden">
|
||||||
<TopBar
|
<TopBar
|
||||||
stats={stats}
|
stats={stats}
|
||||||
onExport={handleExport}
|
onExport={handleExport}
|
||||||
@@ -215,7 +215,7 @@ export default function App() {
|
|||||||
/>
|
/>
|
||||||
<div className="flex flex-1 overflow-hidden">
|
<div className="flex flex-1 overflow-hidden">
|
||||||
<Sidebar activeModule={activeModule} setActiveModule={setActiveModule} />
|
<Sidebar activeModule={activeModule} setActiveModule={setActiveModule} />
|
||||||
<main className="flex-1 overflow-auto relative p-6 bg-slate-950">
|
<main className="flex-1 overflow-auto relative p-6 bg-[#041021]">
|
||||||
{isLoadingDefault ? (
|
{isLoadingDefault ? (
|
||||||
<div className="flex flex-col items-center justify-center h-full text-slate-400">
|
<div className="flex flex-col items-center justify-center h-full text-slate-400">
|
||||||
<div className="animate-spin rounded-full h-12 w-12 border-b-2 border-blue-500 mb-4"></div>
|
<div className="animate-spin rounded-full h-12 w-12 border-b-2 border-blue-500 mb-4"></div>
|
||||||
|
|||||||
@@ -12,10 +12,13 @@ interface TopBarProps {
|
|||||||
|
|
||||||
export function TopBar({ stats, onExport, hasData, hasUnsavedChanges, userEmail, onSignOut }: TopBarProps) {
|
export function TopBar({ stats, onExport, hasData, hasUnsavedChanges, userEmail, onSignOut }: TopBarProps) {
|
||||||
return (
|
return (
|
||||||
<header className="bg-slate-800 border-b border-slate-700 h-16 flex items-center justify-between px-6 shrink-0 z-10">
|
<header className="bg-[#020812] border-b border-slate-700/30 h-16 flex items-center justify-between px-6 shrink-0 z-10 shadow-2xl">
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center">
|
||||||
<Database className="text-blue-500 w-6 h-6" />
|
<img
|
||||||
<h1 className="text-xl font-bold text-white tracking-tight">CRAZE Product Data Quality Manager</h1>
|
src="/assets/logo.png"
|
||||||
|
alt="DataCraze"
|
||||||
|
className="h-10 w-auto object-contain"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{stats && (
|
{stats && (
|
||||||
|
|||||||
Reference in New Issue
Block a user