-
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.
* Componente de testimonios iniciado * sección de testimonios terminada y arreglos visuales agregados.
- Loading branch information
1 parent
07efba1
commit 74fcfe9
Showing
10 changed files
with
163 additions
and
10 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
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 |
---|---|---|
@@ -0,0 +1,120 @@ | ||
--- | ||
import { Image } from "astro:assets"; | ||
import elviraConcheiroPhoto from "../../images/elvira_concheiro_photo.jpg"; | ||
import rocioMejiaPhoto from "../../images/rocio_mejia_photo.jpg"; | ||
import brianaMarbury from "../../images/briana_marbury_photo.jpg"; | ||
import QuoteLeftIcon from "../../icons/QuoteLeftIcon.astro"; | ||
--- | ||
|
||
<section id="testimonios" class="w-full mb-20 container m-auto"> | ||
<h2 class="text-4xl font-bold text-center mb-10">Testimonios</h2> | ||
|
||
<article class="max-w-[60rem] m-auto flex flex-row gap-16 items-center mb-2"> | ||
<picture class="flex flex-col flex-shrink-0 relative"> | ||
<div class="text-primary -mb-16"> | ||
<QuoteLeftIcon width="5rem" height="5rem" /> | ||
</div> | ||
<Image | ||
src={elviraConcheiroPhoto} | ||
alt="Elvira Concheiro foto" | ||
class="bg-red-300 rounded-full object-cover -z-10" | ||
width="300" | ||
height="300" | ||
/> | ||
<div | ||
class="w-[300px] h-[300px] bg-primary rounded-full absolute -bottom-2 -right-2 -z-20" | ||
> | ||
</div> | ||
</picture> | ||
|
||
<div> | ||
<blockquote> | ||
<p class="text-lg text-balance"> | ||
No existe en la práctica ningún esfuerzo como el que aquí saludamos, | ||
que es el de la Cámara de la Gente, que tenemos un combate común que | ||
hacer por, efectivamente, hacerse de esos medios de pago o de | ||
recaudación. | ||
</p> | ||
</blockquote> | ||
|
||
<p class="font-bold text-primary mt-2"> | ||
Elvira Concheiro <cite class="text-black font-normal" | ||
>- Tesorera de la Federación</cite | ||
> | ||
</p> | ||
</div> | ||
</article> | ||
|
||
<article class="max-w-[60rem] m-auto flex flex-row-reverse gap-16 items-center mb-2"> | ||
<picture class="flex flex-col flex-shrink-0 relative"> | ||
<div class="text-primary -mb-16"> | ||
<QuoteLeftIcon width="5rem" height="5rem" /> | ||
</div> | ||
<Image | ||
src={rocioMejiaPhoto} | ||
alt="Elvira Concheiro foto" | ||
class="bg-red-300 rounded-full object-cover -z-10" | ||
width="300" | ||
height="300" | ||
/> | ||
<div | ||
class="w-[300px] h-[300px] bg-primary rounded-full absolute -bottom-2 -right-2 -z-20" | ||
> | ||
</div> | ||
</picture> | ||
|
||
<div> | ||
<blockquote> | ||
<p class="text-lg text-balance text-right"> | ||
Queremos poner a su disposición nuestra infraestructura para que | ||
puedan utilizar nuestros canales para que podamos servir como agente | ||
comercial, como corresponsal, para que en todos los lugares donde | ||
estemos podamos recibir las remesas y entregarlas directamente a los | ||
socios y a las socias de la Cámara de la Gente. | ||
</p> | ||
</blockquote> | ||
|
||
<p class="font-bold text-primary mt-2 text-right"> | ||
Rocío Mejía <cite class="text-black font-normal" | ||
>- Directora General de la Financiera para el Bienestar</cite | ||
> | ||
</p> | ||
</div> | ||
</article> | ||
|
||
<article class="max-w-[60rem] m-auto flex flex-row gap-16 items-center mb-2"> | ||
<picture class="flex flex-col flex-shrink-0 relative"> | ||
<div class="text-primary -mb-16"> | ||
<QuoteLeftIcon width="5rem" height="5rem" /> | ||
</div> | ||
<Image | ||
src={brianaMarbury} | ||
alt="Elvira Concheiro foto" | ||
class="bg-red-300 rounded-full object-cover -z-10" | ||
width="300" | ||
height="300" | ||
/> | ||
<div | ||
class="w-[300px] h-[300px] bg-primary rounded-full absolute -bottom-2 -right-2 -z-20" | ||
> | ||
</div> | ||
</picture> | ||
|
||
<div> | ||
<blockquote> | ||
<p class="text-lg text-balance"> | ||
El esfuerzo que la Cámara de la Gente está liderando en México nos | ||
parece una ruta estratégica que otras regiones del mundo pueden seguir | ||
para democratizar sus sistemas de pagos en comunidades que aún deben | ||
ser debidamente atendidas. | ||
</p> | ||
</blockquote> | ||
|
||
<p class="font-bold text-primary mt-2"> | ||
Briana Marbury <cite class="text-black font-normal" | ||
>- Directora general de la Fundación Interledger</cite | ||
> | ||
</p> | ||
</div> | ||
</article> | ||
</section> |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#testimonios { | ||
blockquote p { | ||
&::before { | ||
content: '“'; | ||
} | ||
|
||
&::after { | ||
content: '”'; | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
interface Props { | ||
width: string; | ||
height: string; | ||
} | ||
const { width, height } = Astro.props; | ||
--- | ||
|
||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
viewBox="0 0 448 512" | ||
width={width} | ||
height={height} | ||
> | ||
<!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--> | ||
<path | ||
fill="currentColor" | ||
d="M0 216C0 149.7 53.7 96 120 96l8 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-8 0c-30.9 0-56 25.1-56 56l0 8 64 0c35.3 0 64 28.7 64 64l0 64c0 35.3-28.7 64-64 64l-64 0c-35.3 0-64-28.7-64-64l0-32 0-32 0-72zm256 0c0-66.3 53.7-120 120-120l8 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-8 0c-30.9 0-56 25.1-56 56l0 8 64 0c35.3 0 64 28.7 64 64l0 64c0 35.3-28.7 64-64 64l-64 0c-35.3 0-64-28.7-64-64l0-32 0-32 0-72z" | ||
></path></svg | ||
> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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