Skip to content

Commit

Permalink
feat: remove testimonials and refine paddings
Browse files Browse the repository at this point in the history
  • Loading branch information
evavirseda committed Sep 9, 2024
1 parent a544a33 commit 5525eaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 24 deletions.
2 changes: 1 addition & 1 deletion src/sections/homepage/integratedWith.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
];
</script>

<section class="container flex flex-col py-24 md:pb-36 md:pt-32" {id}>
<section class="container flex flex-col py-20 lg:py-24" {id}>
<div>
<h2 class="mb-9 text-center text-36">Integrated with</h2>
<Carousel items={INTEGRATED_WITH}></Carousel>
Expand Down
24 changes: 1 addition & 23 deletions src/sections/homepage/ourPartners.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@
];
</script>

<section class="container py-24" {id}>
<section class="container py-20 lg:py-28" {id}>
<h2 class="mb-9 text-center text-36">Our Partners</h2>
<div class="flex flex-col gap-28">
<div class="grid flex-1 grid-cols-2 gap-5 md:grid-cols-3 lg:grid-cols-6">
{#each GOVERNMENT_PARTNERS.concat(COMMERCIAL_PARTNERS) as item}
<div class="flex aspect-square flex-col">
Expand All @@ -35,26 +34,5 @@
{/if}
</div>
{/each}
</div>
<div>
<h3 class="text-center">Testimonials</h3>
<div class="mt-10 grid grid-cols-1 gap-5 md:grid-cols-2 lg:gap-10">
{#each TESTIMONIALS as { description, author, logo }}
<div
class="flex flex-col gap-y-5 rounded-md border border-grey-100 bg-white px-6 py-8 md:px-9 md:py-14"
>
<div class="flex flex-row items-center gap-x-5">
<div class="h-10 w-10 overflow-hidden rounded-full">
<img src={logo} alt={logo} class="h-full w-full object-contain" />
</div>
<h4>{author}</h4>
</div>
<div class="leading-150 tracking-0.04 text-grey-500">
{description}
</div>
</div>
{/each}
</div>
</div>
</div>
</section>

0 comments on commit 5525eaa

Please sign in to comment.