Skip to content

Commit

Permalink
Create FAQ section
Browse files Browse the repository at this point in the history
  • Loading branch information
DilsonsPickles committed Aug 17, 2023
1 parent 75bbfa0 commit 713baa2
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
38 changes: 38 additions & 0 deletions src/components/homepage/FAQ.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<section class="">
<div class="max-w-screen-2xl mx-auto p-16 grid grid-cols-12">
<div class="col-start-3 col-span-2">
<h2 class="text-4xl font-bold">Popular in the <a class="text-blue-700 underline" href="/faq">FAQ</a></h2>
</div>
<div class="col-start-6 col-span-5 flex flex-col">
<div>
<h4 class="text-xl font-bold">What is Audacity?</h4><p class="text-lg mt-2">
Audacity is the world’s most popular free software for recording and
editing audio. So if you're producing music, a podcast, or just
playing around with audio, Audacity is for you.
</p>
</div>
<div class="mt-12">
<h4 class="text-xl font-bold">Who is Audacity for?</h4><p class="text-lg mt-2">
Audacity is for anyone who wants to get creative with sound. It’s also
the perfect tool for anyone who needs to quickly edit or export audio,
for any reason.
</p>
</div>
<div class="mt-12">
<h4 class="text-xl font-bold">Is Audacity free?</h4><p class="text-lg mt-2">
Yes! Audacity has always been and will always be remain free for
everyone.
</p>
</div>
<div class="mt-12">
<h4 class="text-xl font-bold">Is Audacity open source?</h4><p class="text-lg mt-2">
Audacity is proudly open source. This means its source code remains
open to anyone to view or modify. <br /> A dedicated worldwide community
of passionate audio lovers have collaborated to make Audacity the well-loved
software it is today. Many third-party plug-ins have also been developed
for Audacity thanks to its open source nature.
</p>
</div>
</div>
</div>
</section>
2 changes: 2 additions & 0 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import ShareToAudio from "../components/homepage/features/ShareToAudio.astro";
import RecordAnything from "../components/homepage/RecordAnything.astro";
import ShareYourSounds from "../components/homepage/ShareYourSounds.astro"
import FeatureCards from "../components/homepage/FeatureCards.astro";
import FAQ from "../components/homepage/FAQ.astro";
---

<BaseLayout title="Audacity | Home">
Expand All @@ -19,6 +20,7 @@ import FeatureCards from "../components/homepage/FeatureCards.astro";
<BlogPosts />
<FeatureCards/>
<DownloadBanner />
<FAQ />
</BaseLayout>


0 comments on commit 713baa2

Please sign in to comment.