diff --git a/src/components/AdSense.astro b/src/components/AdSense.astro
new file mode 100644
index 0000000..24193b6
--- /dev/null
+++ b/src/components/AdSense.astro
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index 5537662..79275cc 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -27,6 +27,12 @@ const { title } = Astro.props;
href={`${Astro.site}rss.xml`}
/>
+
{title}
diff --git a/src/pages/posts/[...slug].astro b/src/pages/posts/[...slug].astro
index 9e2a443..ee43cad 100644
--- a/src/pages/posts/[...slug].astro
+++ b/src/pages/posts/[...slug].astro
@@ -18,6 +18,7 @@ import A from "../../components/markdown/A.astro";
import P from "../../components/markdown/P.astro";
import type { InferGetStaticPropsType } from "astro";
import Player from "../../components/Player.astro";
+import AdSense from "../../components/AdSense.astro";
export async function getStaticPaths() {
const posts = await getCollection("posts");
@@ -161,6 +162,7 @@ const imgUrl = `${Astro.site?.origin}${post.slug}-og.png`;
}}
/>
+
@@ -175,4 +177,4 @@ const imgUrl = `${Astro.site?.origin}${post.slug}-og.png`;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
-
+
\ No newline at end of file