From 76d468d1daa1883d45ae7c07d82c43fff920dd12 Mon Sep 17 00:00:00 2001 From: Rico van Zelst Date: Wed, 26 Feb 2025 22:24:05 +0100 Subject: [PATCH] feat: add AdSense configuration file - Introduced a new config file for AdSense settings. - Added client ID and ad slot identifiers for various placements. --- config/ads.php | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 config/ads.php diff --git a/config/ads.php b/config/ads.php new file mode 100644 index 0000000..b086a9f --- /dev/null +++ b/config/ads.php @@ -0,0 +1,22 @@ + 'ca-pub-4505764048662657', + + 'slots' => [ + 'horizontal_banner' => '9840151408', + 'vertical_banner' => '9117294343', + 'in_article' => '7169787855', + 'rectangle' => '1917461172', + 'common' => '4128691547' + ] +];