Remove homepage block

This commit is contained in:
Dilson's Pickles
2025-03-25 12:14:26 +11:00
parent 1c4db58aa7
commit ee6c3413bb

View File

@@ -1,37 +0,0 @@
---
import recordMemos from "../../assets/img/record-memos.webp";
import recordPodcast from "../../assets/img/record-podcast.webp";
import voiceOver from "../../assets/img/voice-over.webp";
---
<section class="max-w-screen-xl mx-6 sm:mx-12 md:mx-16 xl:mx-auto py-12">
<div class="text-center">
<h2>Record anything</h2>
<p class="sub-heading">
Excellent for podcasts, voice-over work or even just recording memos.
</p>
</div>
<div class="flex flex-col md:flex-row gap-4 xl:gap-8 mt-8 lg:h-56">
<div class="h-full basis-1/3">
<img
class="object-cover w-full h-40 lg:h-full rounded"
src={recordPodcast.src}
alt="Woman smiling in front of a microphone"
/>
</div>
<div class="h-full basis-1/3">
<img
class="object-cover w-full h-40 lg:h-full rounded"
src={voiceOver.src}
alt="Man recording lines read from a sheet a paper"
/>
</div>
<div class="h-full basis-1/3">
<img
class="object-cover w-full h-40 lg:h-full rounded"
src={recordMemos.src}
alt="Someone taking notes at a computer with a microphone on their desk"
/>
</div>
</div>
</section>