diff --git a/public/buttons/522@5snb.club.png b/public/buttons/522@5snb.club.png
new file mode 100644
index 0000000..c8d89cf
Binary files /dev/null and b/public/buttons/522@5snb.club.png differ
diff --git a/public/buttons/foxscot.ch.png b/public/buttons/foxscot.ch.png
new file mode 100644
index 0000000..7cbfbee
Binary files /dev/null and b/public/buttons/foxscot.ch.png differ
diff --git a/public/buttons/sominemo.gif b/public/buttons/sominemo.gif
new file mode 100644
index 0000000..3584f4f
Binary files /dev/null and b/public/buttons/sominemo.gif differ
diff --git a/src/content/posts/2025-06-14-1yranni.mdx b/src/content/posts/2025-06-14-1yranni.mdx
new file mode 100644
index 0000000..6ae7b86
--- /dev/null
+++ b/src/content/posts/2025-06-14-1yranni.mdx
@@ -0,0 +1,12 @@
+---
+date: 2025-06-14 13:00:00
+title: It's the one year anniversary!
+summary: ...pretty much. Talking about my current plans for the site and what I'm going to do with it now that I am free from school.
+draft: true
+---
+
+Blow the party horns. My first ever post on this version of the blog happened on June 18, 2024 ~~even though it says the 17th, i still need to fix that~~. It is now June *14*, 2025. Close enough. HAPPY ONE YEAR!!!!!
+
+To be fair, I *did* change the backend from Next.js to Astro around eight months ago, so I haven't been on this specific *core* of the blog for a year, but as far as the
+design goes, it's been almost a full year. Wowzers.
+
diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro
index a12e80f..fe2d6df 100644
--- a/src/layouts/BaseLayout.astro
+++ b/src/layouts/BaseLayout.astro
@@ -7,7 +7,9 @@ import '../styles/globals.css'
import Header from '../components/Header.astro'
import Footer from '../components/Footer.astro'
-const { title } = Astro.props
+const { title, description, ogImage } = Astro.props
+
+const ogImageUrl = ogImage ? "https://eleboog.com" + ogImage : "https://eleboog.com/blog/blogbanner.png"
---
@@ -19,8 +21,21 @@ const { title } = Astro.props
{title ? title + ' - eleboog.com' : 'eleboog.com'}
+
+ {/* open graph babeeeee */}
+
+
+
+
+
+
+
+
+
+
+
-
+
diff --git a/src/layouts/PostLayout.astro b/src/layouts/PostLayout.astro
index d7af443..51dd605 100644
--- a/src/layouts/PostLayout.astro
+++ b/src/layouts/PostLayout.astro
@@ -39,7 +39,7 @@ const numberToWord = (num: number) => {
{title ? title + ' - eleboog.com' : 'eleboog.com'}
-
+
{ ( fm.cover && fm.cover_alt ) ? (
diff --git a/src/layouts/StandaloneMDXLayout.astro b/src/layouts/StandaloneMDXLayout.astro
index c7ae802..8518fb1 100644
--- a/src/layouts/StandaloneMDXLayout.astro
+++ b/src/layouts/StandaloneMDXLayout.astro
@@ -24,7 +24,7 @@ const title = frontmatter.slug ?? 'me'
{title ? title + ' - eleboog.com' : 'eleboog.com'}
-
+