mirror of
https://github.com/PeterMaquiran/tvone.git
synced 2026-04-18 15:27:52 +00:00
Compare commits
2 Commits
9fb75d8db6
...
e9cbf91e91
| Author | SHA1 | Date | |
|---|---|---|---|
| e9cbf91e91 | |||
| eec32932e7 |
@@ -0,0 +1,13 @@
|
|||||||
|
# editorconfig.org
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
end_of_line = lf
|
||||||
|
charset = utf-8
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
insert_final_newline = true
|
||||||
|
|
||||||
|
[*.md]
|
||||||
|
trim_trailing_whitespace = false
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import Image from 'next/image';
|
||||||
import {
|
import {
|
||||||
LayoutDashboard, Newspaper, Users, BarChart3,
|
LayoutDashboard, Newspaper, Users, BarChart3,
|
||||||
Settings, HelpCircle, Image as ImageIcon,
|
Settings, HelpCircle, Image as ImageIcon,
|
||||||
@@ -12,9 +13,12 @@ const CreateNewsPage = () => {
|
|||||||
{/* Sidebar Lateral - Glassmorphism */}
|
{/* Sidebar Lateral - Glassmorphism */}
|
||||||
<aside className="w-64 backdrop-blur-xl bg-white/80 border-r border-slate-200 p-6 flex flex-col">
|
<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="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">
|
<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>
|
</span>
|
||||||
</div>
|
</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">
|
<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
|
<Save size={16}/> Salvar Rascunho
|
||||||
</button>
|
</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
|
<Send size={16}/> Publicar Artigo
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import {
|
|||||||
Settings, HelpCircle, TrendingUp, Eye, Clock,
|
Settings, HelpCircle, TrendingUp, Eye, Clock,
|
||||||
AlertCircle, ChevronRight, Edit3, Trash2, ExternalLink
|
AlertCircle, ChevronRight, Edit3, Trash2, ExternalLink
|
||||||
} from 'lucide-react';
|
} from 'lucide-react';
|
||||||
|
import Image from 'next/image';
|
||||||
|
|
||||||
const DashboardMain = () => {
|
const DashboardMain = () => {
|
||||||
return (
|
return (
|
||||||
@@ -12,9 +13,11 @@ const DashboardMain = () => {
|
|||||||
{/* Sidebar Lateral - Consistente com a página de criação */}
|
{/* 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">
|
<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="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">
|
<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>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user