change logo

This commit is contained in:
2026-04-15 14:36:46 +01:00
parent 9fb75d8db6
commit eec32932e7
2 changed files with 12 additions and 5 deletions
+7 -3
View File
@@ -1,4 +1,5 @@
import React from 'react';
import Image from 'next/image';
import {
LayoutDashboard, Newspaper, Users, BarChart3,
Settings, HelpCircle, Image as ImageIcon,
@@ -12,9 +13,12 @@ const CreateNewsPage = () => {
{/* Sidebar Lateral - Glassmorphism */}
<aside className="w-64 backdrop-blur-xl bg-white/80 border-r border-slate-200 p-6 flex flex-col">
<div className="flex items-center gap-2 mb-10 px-2">
<div className="w-8 h-8 bg-blue-600 rounded-lg flex items-center justify-center text-white font-bold italic">P</div>
<div className="w-10 h-10 bg-white rounded-lg flex items-center justify-center text-white font-bold italic">
<Image src="/logo.png" alt="TVone" width={50} height={50} />
</div>
<span className="font-bold text-sm tracking-tight leading-tight uppercase">
Panorama Global<br/><span className="text-blue-600 text-[10px]">de Notícias</span>
TVone<br/><span className="text-blue-600 text-[10px]">de Notícias</span>
</span>
</div>
@@ -65,7 +69,7 @@ const CreateNewsPage = () => {
<button className="px-5 py-2 rounded-lg border border-slate-200 bg-white text-sm font-medium hover:bg-slate-50 transition-all flex items-center gap-2">
<Save size={16}/> Salvar Rascunho
</button>
<button className="px-6 py-2 rounded-lg bg-blue-600 text-white text-sm font-medium hover:bg-blue-700 transition-all shadow-lg shadow-blue-200 flex items-center gap-2">
<button className="px-6 py-2 rounded-lg bg-blue-600 text-white text-sm font-medium hover:bg-blue-600 transition-all shadow-lg shadow-blue-200 flex items-center gap-2">
<Send size={16}/> Publicar Artigo
</button>
</div>
+5 -2
View File
@@ -4,6 +4,7 @@ import {
Settings, HelpCircle, TrendingUp, Eye, Clock,
AlertCircle, ChevronRight, Edit3, Trash2, ExternalLink
} from 'lucide-react';
import Image from 'next/image';
const DashboardMain = () => {
return (
@@ -12,9 +13,11 @@ const DashboardMain = () => {
{/* Sidebar Lateral - Consistente com a página de criação */}
<aside className="w-64 backdrop-blur-xl bg-white/80 border-r border-slate-200 p-6 flex flex-col">
<div className="flex items-center gap-2 mb-10 px-2">
<div className="w-8 h-8 bg-blue-600 rounded-lg flex items-center justify-center text-white font-bold italic">P</div>
<div className="w-10 h-10 bg-white rounded-lg flex items-center justify-center font-bold italic">
<Image src="/logo.png" alt="TVone" width={50} height={50} />
</div>
<span className="font-bold text-sm tracking-tight leading-tight uppercase">
Panorama Global<br/><span className="text-blue-600 text-[10px]">de Notícias</span>
TVone<br/><span className="text-blue-600 text-[10px]">de Notícias</span>
</span>
</div>