Con la marca incorporada primera versión

This commit is contained in:
markosbenitez
2026-06-04 22:49:25 -03:00
parent b1ca0e0795
commit b813622e30
13 changed files with 233 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
export function SurveyHeader() {
return (
<header
style={{ background: 'var(--color-re-teal)' }}
className="survey-header-bar"
>
<img
src="/logos/re-mono-svg.svg"
alt="RE"
className="survey-header-logo"
width={48}
height={48}
/>
<span className="survey-header-title">DATOS PAÍS SOBRE EL CUIDADO</span>
</header>
)
}