Renacer Social, the app

LazosPage.tsx 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. import {
  2. IonBackButton,
  3. IonButtons,
  4. IonCard,
  5. IonCardContent,
  6. IonCardHeader,
  7. IonCardSubtitle,
  8. IonCardTitle,
  9. IonContent,
  10. IonHeader,
  11. IonPage,
  12. IonTitle,
  13. IonToolbar,
  14. } from "@ionic/react";
  15. import { RouteComponentProps } from "react-router";
  16. const LazosPage: React.FC = () => {
  17. return (
  18. <IonPage>
  19. <IonHeader>
  20. <IonToolbar>
  21. <IonButtons slot="start">
  22. <IonBackButton />
  23. </IonButtons>
  24. <IonTitle>Servicios</IonTitle>
  25. </IonToolbar>
  26. </IonHeader>
  27. <IonContent fullscreen>
  28. <IonCard>
  29. <IonCardHeader>
  30. <IonCardTitle>Proyecto de Lazos</IonCardTitle>
  31. <IonCardSubtitle></IonCardSubtitle>
  32. </IonCardHeader>
  33. <IonCardContent>
  34. El proyecto Lazos es un programa de prevención e intervención de
  35. violencia doméstica. Incluye un grupo de apoyo ofrecido a víctimas
  36. de violencia doméstica y sus familias. En el mismo se ofrecen
  37. talleres educativos y actividades de crecimiento personal. Puede ser
  38. parte del mismo como participante o como voluntario. Envíe un
  39. mensaje en la sección de contactos o llame a nuestras oficinas para
  40. más información. 
  41. </IonCardContent>
  42. </IonCard>
  43. </IonContent>
  44. </IonPage>
  45. );
  46. };
  47. export default LazosPage;