From 75a93ce5f38dcc46b8cae6ab72e97117fe9df401 Mon Sep 17 00:00:00 2001 From: Robert Wagner Date: Sun, 10 Nov 2024 08:00:01 -0500 Subject: [PATCH] Add countries --- src/pages/sponsor.astro | 32 +++++++++++++++++++++++++++----- 1 file changed, 27 insertions(+), 5 deletions(-) diff --git a/src/pages/sponsor.astro b/src/pages/sponsor.astro index 3287f16..a24a9b6 100644 --- a/src/pages/sponsor.astro +++ b/src/pages/sponsor.astro @@ -1,6 +1,14 @@ --- import Layout from '../layouts/Layout.astro'; import AdPackageCard from '../components/AdPackageCard.astro'; + +const countries = [ + { name: 'United States', flag: '', percentage: 52 }, + { name: 'United Kingdom', flag: '', percentage: 7 }, + { name: 'Canada', flag: '', percentage: 5 }, + { name: 'Germany', flag: '', percentage: 4 }, + { name: 'Australia', flag: '', percentage: 4 } +]; --- @@ -30,9 +38,7 @@ import AdPackageCard from '../components/AdPackageCard.astro'; Your overall ad reach -

- Listener Metrics -

+

Listener Metrics

@@ -42,7 +48,7 @@ import AdPackageCard from '../components/AdPackageCard.astro'; 1,000 -
listeners per episode
+
listeners per episode
@@ -52,8 +58,24 @@ import AdPackageCard from '../components/AdPackageCard.astro'; 15,000 -
listeners per 90 days
+
listeners per 90 days
+ +

+ Top Listeners By Location +

+ + { + countries.map((country) => { + return ( +
+ {country.name} + + {country.percentage}% +
+ ); + }) + }