Skip to content

Commit 6cbab00

Browse files
committed
new survey
1 parent a8dea0e commit 6cbab00

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

src/components/banner/SurveyBanner.jsx

+4-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { trackEvent } from "../../utils/matomo";
44

55
function SurveyBanner(url) {
66
//no survey going on at the moment
7-
return null;
7+
//return null;
88

99
function handleButtonClick() {
1010
trackEvent("Survey CTA", "Survey CTA button", "Go to Survey");
@@ -13,17 +13,16 @@ function SurveyBanner(url) {
1313
return (
1414
<div
1515
id="survey-banner"
16-
className="flex items-center justify-center min-h-24 bg-orange-400 gap-4 flex-wrap"
16+
className="flex items-center justify-center min-h-24 bg-yellow-300 gap-4 flex-wrap"
1717
>
1818
<div className="flex gap-2 flex-wrap my-4 mx-2">
1919
<p className="text-lg font-bold text-gray-900">3 minute survey:</p>
2020
<p className="text-lg text-gray-900">
21-
Help us understand what sort of plugins and features you'd be
22-
interested in next.
21+
Help us understand what features you want in Audacity and Audio.com next
2322
</p>
2423
</div>
2524
<a
26-
href="https://po415hli6k2.typeform.com/hub-audacity"
25+
href="https://docs.google.com/forms/d/e/1FAIpQLScxH_f64JPCWt5nwqa8MTPXfmi453mqYwy1xZFPF_mx9mYkNw/viewform"
2726
id="survey-button"
2827
onClick={() => {
2928
handleButtonClick();

src/layouts/BaseLayout.astro

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const isPostDownloadPage = Astro.request.url.includes("/post-download");
5151
<NavigationReact client:load currentURL={Astro.request.url} />
5252
<BetaBanner client:load url={Astro.request.url} />
5353
<SurveyBanner client:load url={Astro.request.url} />
54-
{!isPostDownloadPage && <PromoBanner client:load />}
54+
{false && <PromoBanner client:load />}
5555
</header>
5656

5757
<div class="flex-1">

0 commit comments

Comments
 (0)