feat: add AdSense configuration file

- Introduced a new config file for AdSense settings.
- Added client ID and ad slot identifiers for various placements.
This commit is contained in:
Rico van Zelst
2025-02-26 22:24:05 +01:00
parent 45d6cad605
commit 76d468d1da

22
config/ads.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| AdSense Settings
|--------------------------------------------------------------------------
|
| This file contains the configuration for Google AdSense on Heimerdinger.lol
|
*/
'client_id' => 'ca-pub-4505764048662657',
'slots' => [
'horizontal_banner' => '9840151408',
'vertical_banner' => '9117294343',
'in_article' => '7169787855',
'rectangle' => '1917461172',
'common' => '4128691547'
]
];