Responsive tweaks in news items
This commit is contained in:
parent
c18af4a224
commit
c572050d02
|
|
@ -33,7 +33,7 @@ const carouselImages3 = [
|
||||||
---
|
---
|
||||||
|
|
||||||
<MainLayout>
|
<MainLayout>
|
||||||
<!-- <HeroHome /> -->
|
<HeroHome />
|
||||||
|
|
||||||
<InfoSection bgColor="bg-white" title="Construyendo el mundo soñado por los profetas: justicia y paz para Israel y toda la humanidad" data={infoboxes} />
|
<InfoSection bgColor="bg-white" title="Construyendo el mundo soñado por los profetas: justicia y paz para Israel y toda la humanidad" data={infoboxes} />
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,19 +21,19 @@ const { Content } = await render(post);
|
||||||
---
|
---
|
||||||
|
|
||||||
<MainLayout>
|
<MainLayout>
|
||||||
<div class="container mx-auto py-16">
|
<!-- <div class="container mx-auto py-16">
|
||||||
<Header />
|
<Header />
|
||||||
</div>
|
</div> -->
|
||||||
|
|
||||||
<TitleSection title={post.data.title} />
|
<TitleSection title={post.data.title} />
|
||||||
|
|
||||||
<div class="container mx-auto">
|
<div class="container mx-auto">
|
||||||
{post.data.gallery && <CarouselSection images={post.data.gallery} />}
|
{post.data.gallery && <CarouselSection images={post.data.gallery} />}
|
||||||
<div class="grid grid-cols-10">
|
<div class="grid md:grid-cols-10">
|
||||||
<div class="col-span-7 bg-white p-20 prose-p:mb-4">
|
<div class="md:col-span-7 bg-white p-8 md:p-20 prose-p:mb-4">
|
||||||
<Content />
|
<Content />
|
||||||
</div>
|
</div>
|
||||||
<div class="col-span-3 bg-tertiary">
|
<div class="md:col-span-3 bg-tertiary">
|
||||||
{ post.data.youtube && (
|
{ post.data.youtube && (
|
||||||
<YouTube id={post.data.youtube} />
|
<YouTube id={post.data.youtube} />
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue