From 923b8ca38ea2e95332ff90740d4c7966808460e2 Mon Sep 17 00:00:00 2001 From: Steve Scargall <37674041+sscargal@users.noreply.github.com> Date: Wed, 10 Sep 2025 17:38:14 +0000 Subject: [PATCH] Add OpenGraph, Facebook, and Twitter metadata fields to the head Signed-off-by: Steve Scargall <37674041+sscargal@users.noreply.github.com> --- content/en/_index.md | 36 +++++++++++++++++++ content/en/blog/_index.md | 33 +++++++++++++++++ hugo.toml | 2 ++ themes/memmachine/layouts/_partials/head.html | 3 ++ .../layouts/_partials/head/seo-metadata.html | 25 +++++++++++++ 5 files changed, 99 insertions(+) create mode 100644 content/en/_index.md create mode 100644 themes/memmachine/layouts/_partials/head/seo-metadata.html diff --git a/content/en/_index.md b/content/en/_index.md new file mode 100644 index 0000000..00064b1 --- /dev/null +++ b/content/en/_index.md @@ -0,0 +1,36 @@ +--- +title: "MemMachine - The Open-Source Memory Layer for AI Agents" +date: 2024-09-09 +description: "MemMachine is the open-source memory layer for advanced AI agents, enabling them to learn, remember, and adapt. Build personalized, context-aware applications that store long-term conversational memory and user preferences." +canonical: "https://memmachine.ai/" + +# OpenGraph (Facebook) Metadata +og_title: "MemMachine - The Open-Source Memory Layer for AI Agents" +og_description: "MemMachine is the open-source memory layer for advanced AI agents, enabling them to learn, remember, and adapt. Build personalized, context-aware applications that store long-term conversational memory and user preferences." +og_url: "https://memmachine.ai/" +og_type: "website" +og_site_name: "MemMachine" +og_image: "https://memmachine.ai/img/logo.png" +og_image_alt: "MemMachine AI Logo" + +# Twitter Card Metadata +twitter_card: "summary_large_image" +twitter_site: "@memmachineai" +# twitter_title: "MemMachine - Open-Source Memory for AI" +twitter_description: "Build advanced, personalized AI agents that remember. MemMachine is the open-source memory layer that enables long-term memory and learning for any LLM." +twitter_image: "https://memmachine.ai/img/logo.png" +twitter_image_alt: "MemMachine AI Logo" + +# Structured Data (JSON-LD) +schema_ld: | + { + "@context": "https://schema.org", + "@type": "Organization", + "name": "MemMachine", + "url": "https://memmachine.ai/", + "logo": "https://memmachine.ai/img/logo.png", + "sameAs": [ + "https://github.com/MemMachine/MemMachine", + ] + } +--- \ No newline at end of file diff --git a/content/en/blog/_index.md b/content/en/blog/_index.md index 69ec7de..c3fef87 100644 --- a/content/en/blog/_index.md +++ b/content/en/blog/_index.md @@ -1,5 +1,38 @@ --- title: "Blog" + +description: "MemMachine is the open-source memory layer for advanced AI agents, enabling them to learn, remember, and adapt. Build personalized, context-aware applications that store long-term conversational memory and user preferences." +canonical: "https://memmachine.ai/" + +# OpenGraph (Facebook) Metadata +og_title: "MemMachine Blogs - The Open-Source Memory Layer for AI Agents" +og_description: "MemMachine is the open-source memory layer for advanced AI agents, enabling them to learn, remember, and adapt. Build personalized, context-aware applications that store long-term conversational memory and user preferences." +og_url: "https://memmachine.ai/" +og_type: "blog" +og_site_name: "MemMachine" +og_image: "https://memmachine.ai/img/logo.png" +og_image_alt: "MemMachine AI Logo" + +# Twitter Card Metadata +twitter_card: "summary_large_image" +#twitter_site: "@memmachineai" +twitter_title: "MemMachine Blogs - Open-Source Memory for AI" +twitter_description: "Build advanced, personalized AI agents that remember. MemMachine is the open-source memory layer that enables long-term memory and learning for any LLM." +twitter_image: "https://memmachine.ai/img/logo.png" +twitter_image_alt: "MemMachine AI Logo" + +# Structured Data (JSON-LD) +schema_ld: | + { + "@context": "https://schema.org", + "@type": "Organization", + "name": "MemMachine", + "url": "https://memmachine.ai/", + "logo": "https://memmachine.ai/img/logo.png", + "sameAs": [ + "https://github.com/MemMachine/MemMachine", + ] + } --- Welcome to the MemMachine blog, your essential resource for building with the next generation of AI memory. Here you'll find product announcements, in-depth technical guides, and news from the forefront of open-source agent development. diff --git a/hugo.toml b/hugo.toml index 72cb0a9..fdb2405 100644 --- a/hugo.toml +++ b/hugo.toml @@ -29,6 +29,8 @@ categories = 'categories' tags = 'tags' [params] + description = "MemMachine is an open-source memory layer for advanced AI agents. It enables AI to learn, store, and recall data and preferences from past interactions, creating sophisticated, personalized user profiles." + # Your Google Analytics ID (e.g., "G-XXXXXXXXXX") googleAnalytics = "G-166982145" diff --git a/themes/memmachine/layouts/_partials/head.html b/themes/memmachine/layouts/_partials/head.html index 0629139..2c84fa1 100644 --- a/themes/memmachine/layouts/_partials/head.html +++ b/themes/memmachine/layouts/_partials/head.html @@ -17,4 +17,7 @@