diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index 03c251e..21d0d71 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -12,6 +12,7 @@ const {
const pageTitle = title || site.name;
const ogUrl = canonical || Astro.url.toString();
const year = new Date().getFullYear();
+const ads = site.ads;
---
@@ -44,6 +45,14 @@ const year = new Date().getFullYear();
+ {ads?.enabled && (
+
+ )}
+
diff --git a/src/lib/site.js b/src/lib/site.js
index 3b8af1e..0420a2c 100644
--- a/src/lib/site.js
+++ b/src/lib/site.js
@@ -3,4 +3,8 @@ export const site = {
description: 'Street culture ยท Anatomy of online hype, from peak to 404',
url: 'https://hype404.com',
postsPerPage: 10,
+ ads: {
+ enabled: true,
+ publisherId: '9763775565109295',
+ },
};