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,27 @@
export function SurveyFooter() {
return (
<footer
style={{ background: 'var(--color-re-dark)' }}
className="survey-footer-bar"
>
<div className="survey-footer-group">
<span className="survey-footer-label">Un producto de</span>
<img
src="/logos/FS-ISO-SVG.svg"
alt="Fundación Solidaridad"
className="survey-footer-logo"
height={32}
/>
</div>
<div className="survey-footer-group">
<span className="survey-footer-label">Powered by</span>
<img
src="/logos/inq-white-svg.svg"
alt="InQuality"
className="survey-footer-logo"
height={32}
/>
</div>
</footer>
)
}

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>
)
}