Renacer Social, the app

SupervisadasPage.tsx 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 ButtonComponent from "../../components/ButtonComponent";
  16. const SupervisadasPage: React.FC = () => {
  17. let body =
  18. "Es de mi interés ponerme en contacto con ustedes para poder coordinar el uso de su servicio de Visitas Supervisadas. También me gustaría saber donde están actualmente ubicados.";
  19. return (
  20. <IonPage>
  21. <IonHeader>
  22. <IonToolbar>
  23. <IonButtons slot="start">
  24. <IonBackButton />
  25. </IonButtons>
  26. <IonTitle>Servicios</IonTitle>
  27. </IonToolbar>
  28. </IonHeader>
  29. <IonContent fullscreen>
  30. <IonCard>
  31. <IonCardHeader>
  32. <IonCardTitle>Visitas Supervisadas</IonCardTitle>
  33. <IonCardSubtitle></IonCardSubtitle>
  34. </IonCardHeader>
  35. <IonCardContent>
  36. En Renacer Social, las Visitas Supervisadas se dan en un entorno
  37. hogareño, emocionalmente saludable y seguro para todos los miembros
  38. envueltos. 
  39. </IonCardContent>
  40. </IonCard>
  41. <ButtonComponent body={body}></ButtonComponent>
  42. </IonContent>
  43. </IonPage>
  44. );
  45. };
  46. export default SupervisadasPage;