Skip to content

Commit

Permalink
Add image collage to Record anything
Browse files Browse the repository at this point in the history
  • Loading branch information
DilsonsPickles committed Aug 16, 2023
1 parent 0a35480 commit 01c6385
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 1 deletion.
Binary file added src/assets/img/RecordAnything2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/RecordAnything2.webp
Binary file not shown.
Binary file added src/assets/img/RecordCursor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/TransportTools.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/waveform.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 18 additions & 1 deletion src/components/homepage/RecordAnything.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
---
import RecordAnything from "../../assets/img/record-anyting.jpg";
import RecordAnything2 from '../../assets/img/RecordAnything2.jpg'
import Waveform from "../../assets/img/waveform.png";
import TransportTools from "../../assets/img/TransportTools.png";
import RecordCursor from '../../assets/img/RecordCursor.png'
---

<section class="bg-slate-50">
Expand All @@ -10,6 +14,19 @@ import RecordAnything from "../../assets/img/record-anyting.jpg";
All you need is a microphone.
</p>
</div>
<image class="col-start-7 col-end-13" src={RecordAnything} />
<div class="col-start-7 col-end-13 grid grid-cols-6 grid-rows-auto gap-4">
<div class="relative col-span-6 h-48">
<div class="absolute -right-12 top-24 h-24 w-400">
<img class="h-full w-full rounded-lg" src={TransportTools} />
</div><img class="object-cover object-top h-full w-full rounded-lg" src={RecordAnything} />
</div>
<div class="relative row-start-2 col-span-3 h-48">
<div class="absolute -right-3 bottom-0"><img class="w-full h-52 object-cover" src={RecordCursor}/></div>
<img class="h-full w-full rounded-lg" src={Waveform} />
</div>
<div class="row-start-2 col-span-3 h-48">
<img class="h-full w-full rounded-lg" src={RecordAnything2} />
</div>
</div>
</div>
</section>

0 comments on commit 01c6385

Please sign in to comment.