forked from SOS-RS/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix/ add lucide icons to replace emojis so it works across all browse…
…rs (SOS-RS#219) replaced all emoji occurences with lucide icons to avoid browser incompatibility SOS-RS#211
- Loading branch information
Showing
3 changed files
with
41 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 25 additions & 14 deletions
39
src/pages/AboutUs/frontItems.ts → src/pages/AboutUs/frontItems.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,79 @@ | ||
import { IServicedFrontInfoProps } from './components/ServicedFrontInfo/types'; | ||
import { | ||
Car, | ||
Baby, | ||
MapPinned, | ||
CookingPot, | ||
GlassWater, | ||
Goal, | ||
HeartHandshake, | ||
Infinity, | ||
MonitorSmartphone, | ||
Speech, | ||
Users, | ||
} from 'lucide-react'; | ||
|
||
const frontItems: IServicedFrontInfoProps[] = [ | ||
export const frontItems: IServicedFrontInfoProps[] = [ | ||
{ | ||
icon: '🚰', | ||
icon: <GlassWater size={24} color="black" />, | ||
title: 'Água', | ||
description: 'Atender demandas urgentes de água;', | ||
}, | ||
{ | ||
icon: '🥘', | ||
icon: <CookingPot size={24} color="black" />, | ||
title: 'Cozinhas solidárias', | ||
description: | ||
'Auxiliar na operação das cozinhas com o envio de suprimentos e distribuição das marmitas;', | ||
}, | ||
{ | ||
icon: '🏠', | ||
icon: <Infinity size={24} color="black" />, | ||
title: 'Conexões', | ||
description: | ||
'Gerir dados confiáveis sobre a demanda de abrigos e a disponibilidade de doações;', | ||
}, | ||
{ | ||
icon: '️❤️', | ||
icon: <HeartHandshake size={24} color="black" />, | ||
title: 'Comunidades', | ||
description: 'Mapear e integrar lideranças comunitárias;', | ||
}, | ||
{ | ||
icon: '📣', | ||
icon: <Speech size={24} color="black" />, | ||
title: 'Comunicação', | ||
description: | ||
'Manter as informações sobre a iniciativa atualizadas e disponíveis a todos;', | ||
}, | ||
{ | ||
icon: '📍', | ||
icon: <MapPinned size={24} color="black" />, | ||
title: 'Dados e Geolocalização', | ||
description: | ||
'Fornecer dados públicos sobre as enchentes e as demandas do cenário de crise com o apoio do IPH UFRGS e nossas operações de voluntários;', | ||
}, | ||
{ | ||
icon: '🎯', | ||
icon: <Goal size={24} color="black" />, | ||
title: 'Expansão', | ||
description: 'Estruturar o crescimento da operação e parcerias;', | ||
}, | ||
{ | ||
icon: '️🚗', | ||
icon: <Car size={24} color="black" />, | ||
title: 'Logística', | ||
description: | ||
'Conectar o transporte dos centros de distribuição e triagem aos abrigos;', | ||
}, | ||
{ | ||
icon: '🧒🏽', | ||
icon: <Baby size={24} color="black" />, | ||
title: 'Olhar para a criança', | ||
description: 'Proteger e oferecer apoio às crianças em abrigos;', | ||
}, | ||
{ | ||
icon: '️🧑🏽🤝🧑🏽', | ||
icon: <Users size={24} color="black" />, | ||
title: 'Pessoas', | ||
description: | ||
'Recrutar, acolher, orientar, treinar e direcionar novos voluntários e padrinhos/madrinhas;', | ||
}, | ||
{ | ||
icon: '🖥️', | ||
icon: <MonitorSmartphone size={24} color="black" />, | ||
title: 'Tecnologia', | ||
description: | ||
'Desenvolver uma solução digital a partir de dados públicos confiáveis.', | ||
}, | ||
]; | ||
|
||
export { frontItems }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters