Skip to content

Commit b2b64b8

Browse files
authored
Merge pull request #23 from sscargal/siteupdates
Siteupdates
2 parents 8f97069 + d2a8cec commit b2b64b8

File tree

8 files changed

+365
-5
lines changed

8 files changed

+365
-5
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: "MemMachine Community Ambassador Program"
3+
date: 2025-10-16T12:00:00-07:00
4+
draft: false
5+
layout: "community-ambassador-program"
6+
---
7+
8+
Join the Hippo Huddle. Build, teach, and make an impact with MemMachine.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: "MemMachine Student Ambassador Program"
3+
date: 2025-10-16T12:00:00-07:00
4+
draft: false
5+
layout: "community-student-ambassador-program"
6+
---
7+
8+
Join the Hippo Huddle. Learn, build, and make an impact with MemMachine.

hugo.toml

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ tags = 'tags'
4343
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."
4444

4545
# Your Google Analytics ID (e.g., "G-XXXXXXXXXX")
46-
googleAnalytics = "G-G0GZQH4153"
46+
googleAnalytics = "GTM-WDX7ZBC7"
4747

4848
# Enable Math Markdown
4949
math = true
@@ -166,14 +166,28 @@ tags = 'tags'
166166
url = 'https://github.com/MemMachine/MemMachine'
167167
weight = 20
168168
[menus.footerCommunity.params]
169-
icon = "github"
169+
icon = "fa-brands fa-github"
170170

171171
[[menus.footerCommunity]]
172172
name = 'Discord'
173173
url = 'https://discord.gg/usydANvKqD'
174174
weight = 30
175175
[menus.footerCommunity.params]
176-
icon = "discord"
176+
icon = "fa-brands fa-discord"
177+
178+
[[menus.footerCommunity]]
179+
name = 'Ambassador Program'
180+
pageRef = '/community-ambassador-program'
181+
weight = 40
182+
[menus.footerCommunity.params]
183+
icon = "fa-solid fa-hippo"
184+
185+
[[menus.footerCommunity]]
186+
name = 'Student Ambassador Program'
187+
pageRef = '/community-student-ambassador-program'
188+
weight = 40
189+
[menus.footerCommunity.params]
190+
icon = "fa-solid fa-graduation-cap"
177191

178192
# Footer Legal menu
179193
[[menus.legal]]

themes/memmachine/layouts/_partials/footer.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ <h2>Product</h2>
2424
</div>
2525
{{- end }}
2626
{{- with site.Menus.footercompany }}
27+
<!--
2728
<div class="col-md-4">
2829
<div class="footer-item">
2930
<h2>Company</h2>
@@ -34,17 +35,18 @@ <h2>Company</h2>
3435
</ul>
3536
</div>
3637
</div>
38+
-->
3739
{{- end }}
3840
{{- with site.Menus.footercommunity }}
39-
<div class="col-md-4">
41+
<div class="col-md-6">
4042
<div class="footer-item">
4143
<h2>Community</h2>
4244
<ul>
4345
{{- range . }}
4446
<li>
4547
<a href="{{ .URL }}" target="_blank" rel="noopener">
4648
{{- with .Params.icon }}
47-
<i class="fab fa-{{ . }}" aria-hidden="true"></i>
49+
<i class="{{ . }}" aria-hidden="true"></i>
4850
{{- end }}
4951
{{ .Name }}
5052
</a>

themes/memmachine/layouts/_partials/head/analytics.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
{{- $gaID := .Site.Params.googleAnalytics }}
88

99
{{- /* Google tag (gtag.js) */}}
10+
<!--
1011
<script async src="https://www.googletagmanager.com/gtag/js?id={{ $gaID }}"></script>
1112
<script>
1213
window.dataLayer = window.dataLayer || [];
@@ -16,5 +17,14 @@
1617
gtag('js', new Date());
1718
gtag('config', '{{ $gaID }}');
1819
</script>
20+
-->
21+
22+
<!-- Google Tag Manager -->
23+
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
24+
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
25+
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
26+
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
27+
})(window,document,'script','dataLayer','{{ $gaID }}');</script>
28+
<!-- End Google Tag Manager -->
1929

2030
{{- end }}

themes/memmachine/layouts/baseof.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
{{ partial "head.html" . }}
55
</head>
66
<body>
7+
<!-- Google Tag Manager (noscript) -->
8+
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WDX7ZBC7"
9+
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
10+
<!-- End Google Tag Manager (noscript) -->
711
<header>
812
{{ partial "header.html" . }}
913
</header>
Lines changed: 158 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,158 @@
1+
{{ define "main" }}
2+
<!--=======================================================
3+
HERO
4+
=========================================================-->
5+
<div class="hero-area">
6+
<div class="container">
7+
<div>
8+
<div class="row">
9+
<div class="col-md-12">
10+
<h1 class="title">
11+
{{ .Title }}
12+
</h1>
13+
<div class="mx-850 text-center">
14+
{{ .Content }}
15+
</div>
16+
</div>
17+
</div>
18+
</div>
19+
</div>
20+
</div>
21+
22+
<!--=======================================================
23+
COMMUNITY
24+
=========================================================-->
25+
<div class="container" style="margin-top: 50px;">
26+
<div class="row mb-5">
27+
<div class="col-md-10 mx-auto">
28+
<h2 class="title-2">🦛 About the Program</h2>
29+
<div class="mx-850">
30+
<p>The MemMachine Community Ambassador Program empowers developers, researchers, creators, and professionals around the world to represent MemMachine – The Open-Source Memory Layer for AI Agents – in their local and online communities, sharing the message of memory, context, and collaboration in AI.</p>
31+
<p>Whether you’re a seasoned AI professional, a “vibe coder” building cool side projects, or someone looking to transition into an AI-focused career, this program helps you learn, teach, and grow – without stepping away from your 9-to-5.</p>
32+
<p>Community Ambassadors are part of our Hippo Huddle – a global network of humble builders, curious minds, and creative leaders who share MemMachine’s values of Humility, Impact, People, Partnership, Openness, and Simplicity (HIPPOS).</p>
33+
</div>
34+
</div>
35+
</div>
36+
<div class="row mb-5">
37+
<div class="col-md-10 mx-auto text-center">
38+
<h2 class="title-2">🦛 Our Culture (HIPPOS)</h2>
39+
<div class="mx-850 text-center">
40+
<h3 class="title-3"><span class="highlight-text-gradient">HIPPOS</span>: Humility, Impact, People, Partnership, Openness, Simplicity</h3>
41+
<ul style="text-align:left">
42+
<li><span class="highlight-text-gradient">Humility</span>: Lead with curiosity and grace. We’re all learners here, growing through what we teach and build.</li>
43+
<li><span class="highlight-text-gradient">Impact</span>: Focus on meaningful outcomes, not vanity metrics. Help others use AI to make real improvements in their work or communities.</li>
44+
<li><span class="highlight-text-gradient">People</span>: Build authentic connections. Foster inclusive, supportive spaces where ideas and collaboration thrive.</li>
45+
<li><span class="highlight-text-gradient">Partnership</span>: Collaborate across teams, orgs, and communities. Innovation happens when we learn from one another.</li>
46+
<li><span class="highlight-text-gradient">Openness</span>: Share knowledge freely and invite feedback. We’re open-source in both technology and mindset.</li>
47+
<li><span class="highlight-text-gradient">Simplicity</span>: Make AI approachable for everyone. You don’t need a PhD to create something powerful – just curiosity and clarity.</li>
48+
</ul>
49+
</div>
50+
</div>
51+
</div>
52+
<div class="row mb-5">
53+
<div class="col-md-10 mx-auto text-center">
54+
<h2 class="title-2">🦛 Your Mission as an Ambassador</h2>
55+
<div class="mx-850 text-center">
56+
<ul style="text-align:left; list-style-type: disc; margin: 20px 0;">
57+
<li>Represent MemMachine in your local or online AI community.</li>
58+
<li>Host or co-host events, talks, or workshops (we’ll support you!).</li>
59+
<li>Build and showcase projects using MemMachine tools and APIs.</li>
60+
<li>Create content: posts, videos, or tutorials, that help others learn.</li>
61+
<li>Collaborate with other Hippos around the world on open initiatives.</li>
62+
<li>Impact the Open Source project by sharing insights and feedback with the team.</li>
63+
</ul>
64+
</div>
65+
</div>
66+
</div>
67+
<div class="row mb-5">
68+
<div class="col-md-10 mx-auto text-center">
69+
<h2 class="title-2">🦛 Who This Program Is For</h2>
70+
<div class="mx-850 text-center">
71+
<ul style="text-align:left; list-style-type: disc; margin: 20px 0;">
72+
<li>AI professionals looking to contribute, collaborate, and gain early access to MemMachine tools.</li>
73+
<li>Developers or vibe coders building side projects and experimental prototypes.</li>
74+
<li>Professionals transitioning into AI – data analysts, software engineers, educators, and creators looking to level up their skills while keeping their day jobs.</li>
75+
<li>Community leaders, change makers and educators who teach, organize meetups, or mentor others in tech.</li>
76+
</ul>
77+
<p>No matter where you are on your journey, the Hippo Huddle is a place to learn, build, and belong.</p>
78+
</div>
79+
</div>
80+
</div>
81+
<div class="row mb-5">
82+
<div class="col-md-10 mx-auto text-center">
83+
<h2 class="title-2">🦛 What You’ll Get</h2>
84+
<div class="mx-850 text-center">
85+
<ul style="text-align:left; list-style-type: disc; margin: 20px 0;">
86+
<li>Professional experience shaping the future of memory and AI systems.</li>
87+
<li>Mentorship from MemVerge engineers, DevRel, and product teams.</li>
88+
<li>Networking with innovators, startups, and researchers worldwide.</li>
89+
<li>Certificate of Recognition as a MemMachine Community Ambassador.</li>
90+
<li>Exclusive swag pack: t-shirt, stickers, and hippo mascot merch.</li>
91+
<li>Early access to MemMachine beta features and partner opportunities.</li>
92+
<li>Spotlight on MemMachine’s website, blog, and LinkedIn.</li>
93+
<li>Collaboration opportunities on events and open-source projects.</li>
94+
</ul>
95+
</div>
96+
</div>
97+
</div>
98+
<div class="row mb-5">
99+
<div class="col-md-10 mx-auto text-center">
100+
<h2 class="title-2">🦛 Program Structure</h2>
101+
<div class="mx-850 text-center">
102+
<table class="table table-bordered table-striped" style="margin: 0 auto; max-width: 700px;">
103+
<thead>
104+
<tr>
105+
<th>Stage</th>
106+
<th>Description</th>
107+
</tr>
108+
</thead>
109+
<tbody>
110+
<tr>
111+
<td>Application</td>
112+
<td>Submit your interest and tell us about your background, community, and goals.</td>
113+
</tr>
114+
<tr>
115+
<td>Onboarding</td>
116+
<td>Meet the team, get access to resources, and connect with other ambassadors.</td>
117+
</tr>
118+
<tr>
119+
<td>Activation</td>
120+
<td>Host your first event, publish content, or launch a project using MemMachine.</td>
121+
</tr>
122+
<tr>
123+
<td>Recognition</td>
124+
<td>Receive your certificate, swag, and be featured on our website and social channels.</td>
125+
</tr>
126+
<tr>
127+
<td>Ongoing Impact</td>
128+
<td>Continue collaborating, sharing, and growing with the Hippo Huddle community.</td>
129+
</tr>
130+
</tbody>
131+
</table>
132+
</div>
133+
</div>
134+
</div>
135+
<div class="row mb-5">
136+
<div class="col-md-10 mx-auto text-center" >
137+
<h2 class="title-2">🦛 How to Apply</h2>
138+
<div class="mx-850 text-center">
139+
<ul style="text-align:left; list-style-type: disc;">
140+
<li>Join our <a href="{{ .Site.Params.social.discord }}" target="_blank" rel="noopener noreferrer">Discord community</a>.</li>
141+
<li>Go to the <code>#ambassadors</code> channel and post a short intro with:
142+
<ul style="text-align:left; list-style-type: disc; margin-left: 20px;">
143+
<li>Your current role and area of focus or interest</li>
144+
<li>One idea for how you’d introduce MemMachine to your community or workplace</li>
145+
<li>Links to your LinkedIn, GitHub, or any past event/project examples</li>
146+
</ul>
147+
</li>
148+
<li>Our team will reach out in DMs to help you get started and join the Hippo Huddle.</li>
149+
</ul>
150+
</div>
151+
</div>
152+
</div>
153+
</div>
154+
</div>
155+
</div>
156+
</div>
157+
158+
{{ end }}

0 commit comments

Comments
 (0)