Skip to content

Commit

Permalink
Implement audio.com placeholder section
Browse files Browse the repository at this point in the history
  • Loading branch information
DilsonsPickles committed Aug 16, 2023
1 parent 090489f commit 8e294b5
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
Binary file added src/assets/img/AudioCard.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/ShareYourSounds.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions src/components/homepage/ShareYourSounds.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
import AudioCard from '../../assets/img/AudioCard.png'
---
<section
class="bg-[url('src/assets/img/ShareYourSounds.jpg')] bg-cover bg-center"
>
<div class="grid grid-cols-12 max-w-7xl mx-auto py-32 gap-8">
<div class="col-start-1 col-span-6"><img src={AudioCard}/></div>
<div class="flex flex-col gap-4 col-start-7 col-span-6 justify-center">
<h2 class="text-6xl font-bold text-white">Share your sounds</h2>
<p class="text-2xl text-white">Upload your sounds online to Audio.com, instantly.</p>
</div>
</div>
</section>
3 changes: 2 additions & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ import BaseLayout from "../layouts/BaseLayout.astro";
import RealTimeEffects from "../components/homepage/features/RealTimeEffects.astro";
import ShareToAudio from "../components/homepage/features/ShareToAudio.astro";
import RecordAnything from "../components/homepage/RecordAnything.astro";
import ShareYourSounds from "../components/homepage/ShareYourSounds.astro"
---

<BaseLayout title="Audacity | Home">
<HeroBanner />
<ReleaseVideo />
<RecordAnything />
<ShareYourSounds />
<DownloadBanner />
<BlogPosts />
</BaseLayout>
Expand Down

0 comments on commit 8e294b5

Please sign in to comment.