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