Skip to content

Commit ca4020d

Browse files
author
Thiago Ferreira
committed
refactor: padrao visual consultoria premium - hierarquia clara, minimalismo
1 parent b1e271c commit ca4020d

3 files changed

Lines changed: 905 additions & 302 deletions

File tree

src/components/Header.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function Header({
2222
return (
2323
<header className="app-header">
2424
<div className="brand-lockup">
25-
<img className="brand-logo" src={`${base}enaex-logo-white.png`} alt="Enaex Brasil" />
25+
<img className="brand-logo" src={`${base}enaex-logo-white.png`} alt="Enaex" />
2626
</div>
2727

2828
<div className="header-center">

src/components/Navigation.jsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
1-
import { StatusChip } from './StatusChip';
21
import { getRoleLabel } from '../utils/roles';
32
import { useApp } from '../context/AppContext';
43

54
export function Navigation({ items, currentPath, onNavigate, session }) {
65
const { language, t } = useApp();
76
const currentItem = items.find((item) => item.path === currentPath) || items[0] || null;
87
const currentTitle = currentItem?.label || t('navigation.title');
9-
const currentHelper = currentItem?.helper || '';
108

119
return (
1210
<nav className="side-nav">
1311
<div className="nav-top">
1412
<div className="nav-brand-block">
15-
<p className="nav-title">{t('navigation.title')}</p>
1613
<strong>{currentTitle}</strong>
1714
</div>
1815
</div>

0 commit comments

Comments
 (0)