Skip to content

Commit 4a5cd58

Browse files
authored
Merge pull request #26 from sscargal/bugfix/remove-animations
Bugfix/remove animations
2 parents 600a234 + 1fc7c53 commit 4a5cd58

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+112
-4795
lines changed

themes/memmachine/assets/css/styles.css

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,7 @@ header nav ul li a:hover {
365365
justify-content: center;
366366
margin: 32px 0 48px;
367367
}
368+
368369
.hero-chat {
369370
padding: 31px;
370371
margin-bottom: 96px;
@@ -1635,6 +1636,36 @@ footer p {
16351636
transform: translateX(-50%);
16361637
}
16371638
}
1639+
1640+
@media screen and (max-width: 800px) {
1641+
.hero-btn > div {
1642+
display: flex;
1643+
flex-direction: column;
1644+
gap: 16px;
1645+
align-items: center;
1646+
}
1647+
.hero-btn a {
1648+
margin: 0 !important;
1649+
width: 90vw;
1650+
max-width: 350px;
1651+
}
1652+
1653+
.ready-section {
1654+
display: flex;
1655+
flex-direction: column;
1656+
align-items: center;
1657+
}
1658+
.ready-section .btn {
1659+
margin: 0 !important;
1660+
width: 90vw;
1661+
max-width: 350px;
1662+
display: block;
1663+
}
1664+
.ready-section a.btn + a.btn {
1665+
margin-top: 16px !important;
1666+
}
1667+
}
1668+
16381669
@media screen and (max-width: 430px) {
16391670
.title {
16401671
font-size: 38px;
@@ -2067,4 +2098,4 @@ footer p {
20672098
font-family: serif;
20682099
line-height: 1;
20692100
pointer-events: none;
2070-
}
2101+
}

themes/memmachine/layouts/404.html

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,17 @@
1111
<div class="container">
1212
<div class="row">
1313
<div class="col-md-12">
14-
<h2 class="title-2" data-aos="fade-up" data-aos-duration="1000">
14+
<h2 class="title-2">
1515
<span>404.</span>
1616
</h2>
17-
<h3 data-aos="fade-up" data-aos-duration="1000">Page not found</h3>
18-
<p data-aos="fade-up" data-aos-duration="1000">
17+
<h3>Page not found</h3>
18+
<p>
1919
Oops! It seems you've ventured into uncharted territory. Let's
2020
guide you back on the right path.
2121
</p>
2222
<a
2323
href="{{ "/" | relLangURL }}"
2424
class="btn btn-primary"
25-
data-aos="fade-up"
26-
data-aos-duration="1000"
2725
>Back to homepage</a
2826
>
2927
</div>

themes/memmachine/layouts/_partials/blog-card.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="insight-single-card" data-aos="fade-up" data-aos-duration="1000">
1+
<div class="insight-single-card">
22

33
{{/* Robust Featured Image Logic */}}
44
{{ $image_path := .Params.featured_image }}

themes/memmachine/layouts/_partials/blog-sidebar.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
<div class="blog-tags">
22
{{/* --- RECENT POSTS --- */}}
3-
<h4 style="border-bottom: 1px solid rgb(31, 31, 50)" data-aos="fade-up" data-aos-duration="1000">
3+
<h4 style="border-bottom: 1px solid rgb(31, 31, 50)">
44
Recent Posts
55
</h4>
6-
<div class="taxonomy-list" data-aos="fade-up" data-aos-duration="1000">
6+
<div class="taxonomy-list">
77
{{ $recent_posts := where site.RegularPages "Section" "blog" | first 3 }}
88
{{ range $recent_posts }}
9-
<a href="{{ .Permalink }}" class="taxonomy-button" data-aos="fade-up" data-aos-duration="1000">
9+
<a href="{{ .Permalink }}" class="taxonomy-button">
1010
{{ .Title }}
1111
</a>
1212
{{ end }}
1313
</div>
1414

1515
{{/* --- CATEGORIES --- */}}
16-
<h4 style="margin: 60px 0 36px 0; border-bottom: 1px solid rgb(31, 31, 50);" data-aos="fade-up" data-aos-duration="1000">
16+
<h4 style="margin: 60px 0 36px 0; border-bottom: 1px solid rgb(31, 31, 50);">
1717
Categories
1818
</h4>
19-
<div class="taxonomy-list" data-aos="fade-up" data-aos-duration="1000">
19+
<div class="taxonomy-list">
2020
{{ range $category, $pages := site.Taxonomies.categories }}
2121
{{ $url := printf "/categories/%s/" ($category | urlize) }}
2222
<a href="{{ $url | relLangURL }}" class="taxonomy-button">
@@ -26,10 +26,10 @@ <h4 style="margin: 60px 0 36px 0; border-bottom: 1px solid rgb(31, 31, 50);" dat
2626
</div>
2727

2828
{{/* --- TAGS --- */}}
29-
<h4 style="margin: 60px 0 36px 0; border-bottom: 1px solid rgb(31, 31, 50);" data-aos="fade-up" data-aos-duration="1000">
29+
<h4 style="margin: 60px 0 36px 0; border-bottom: 1px solid rgb(31, 31, 50);">
3030
Tags
3131
</h4>
32-
<div class="taxonomy-list" data-aos="fade-up" data-aos-duration="1000">
32+
<div class="taxonomy-list">
3333
{{ range $tag, $pages := site.Taxonomies.tags }}
3434
{{ $url := printf "/tags/%s/" ($tag | urlize) }}
3535
<a href="{{ $url | relLangURL }}" class="taxonomy-button">

themes/memmachine/layouts/_partials/brand-logos.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div class="hero-brand mtb-192">
22
<div class="container">
33
<div class="row">
4-
<div class="col-md-12" data-aos="fade-up" data-aos-duration="1000">
4+
<div class="col-md-12">
55
<p class="text-center">Used by Developers at</p>
66
<ul>
77
<li><a href="#"><img src="{{ `/img/brand/1.png` | relURL }}" alt="brand" /></a></li>

themes/memmachine/layouts/_partials/faq.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div class="faq-area mx-850 mtb-192 mx-auto">
22
<div class="container">
3-
<div data-aos="fade-up" data-aos-duration="1000">
3+
<div>
44
<div class="row">
55
<div class="col-md-12">
66
<h2 class="title-2">Frequently Asked <span>Questions</span></h2>
@@ -15,7 +15,7 @@ <h2 class="title-2">Frequently Asked <span>Questions</span></h2>
1515
{{/* Dynamically calculate the animation duration for a staggered effect */}}
1616
{{ $duration := add 200 (mul $index 100) }}
1717

18-
<div data-aos="fade-up" data-aos-duration="{{ $duration }}">
18+
<div>
1919
<div class="accordion-item">
2020
<h2 class="accordion-header">
2121
<button class="accordion-button {{ if ne $index 0 }}collapsed{{ end }}" type="button" data-bs-toggle="collapse" data-bs-target="#collapse-{{ $index }}" aria-expanded="{{ if eq $index 0 }}true{{ else }}false{{ end }}" aria-controls="collapse-{{ $index }}">

themes/memmachine/layouts/_partials/featured-blogs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="container">
33
<div class="row">
44
<div class="col-md-12">
5-
<h2 class="title-2" data-aos="fade-up" data-aos-duration="1000">
5+
<h2 class="title-2">
66
Featured <span>Blog Posts</span>
77
</h2>
88
</div>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- /* Create a list of all CSS files */ -}}
2-
{{- $files := slice "css/bootstrap.min.css" "css/aos.min.css" "css/lenis.css" "css/styles.css" "css/logo-marquee.css" -}}
2+
{{- $files := slice "css/bootstrap.min.css" "css/lenis.css" "css/styles.css" "css/logo-marquee.css" -}}
33

44
{{- /* Create an empty list to hold the resource objects */ -}}
55
{{- $css := slice -}}

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
{{/* Load the AOS vendor script directly from the static folder */}}
2-
<script src="{{ `/js/aos.min.js` | relURL }}" defer></script>
3-
41
{{/* Get and bundle our custom application code */}}
52
{{- $jsFiles := slice
63
(resources.Get "js/custom.js")

themes/memmachine/layouts/_partials/home-sections.html

Lines changed: 11 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,6 @@ <h1 class="title">
3030
class="btn btn-primary mx-2"
3131
>Let's Chat on Discord
3232
</a>
33-
<!--
34-
<a
35-
href="{{ "pricing" | relLangURL }}"
36-
class="btn btn-tertiary"
37-
data-aos="fade-up"
38-
data-aos-delay="300"
39-
>View Pricing</a>
40-
-->
4133
</div>
4234
</div>
4335

@@ -68,7 +60,7 @@ <h1 class="title">
6860
=========================================================-->
6961
<div class="solution-area mb-192">
7062
<div class="container">
71-
<div data-aos="fade-up" data-aos-duration="1000">
63+
<div>
7264
<div class="row">
7365
<div class="col-md-12">
7466
<h2 class="title-2">
@@ -77,7 +69,7 @@ <h2 class="title-2">
7769
</div>
7870
<div class="col-md-12">
7971
<div class="solution-item">
80-
<div data-aos="fade-up" data-aos-duration="800">
72+
<div>
8173
<div class="row mb-5">
8274
<div class="col-md-8 mx-auto text-center">
8375
<p class="mw-100 text-center">
@@ -174,7 +166,7 @@ <h3 class="title-3">Memory is the <span>Key to Personalization</span></h3>
174166
=========================================================-->
175167
<div class="feature-area mt-192">
176168
<div class="container">
177-
<div data-aos="fade-up" data-aos-duration="1000">
169+
<div>
178170
<div class="row">
179171
<div class="col-md-12">
180172
<h2 class="title-2">
@@ -184,7 +176,7 @@ <h2 class="title-2">
184176
</div>
185177
<div class="row gy-4">
186178
<div class="col-md-4">
187-
<div data-aos="fade-up" data-aos-delay="100">
179+
<div>
188180
<div class="feature-item">
189181
<div class="icon-circle">
190182
<i class="fa-solid fa-shield-halved"></i>
@@ -200,7 +192,7 @@ <h3>Build Context-Aware Agents</h3>
200192
</div>
201193
</div>
202194
<div class="col-md-4">
203-
<div data-aos="fade-up" data-aos-delay="200">
195+
<div>
204196
<div class="feature-item">
205197
<div class="icon-circle">
206198
<i class="fa-solid fa-user-pen"></i>
@@ -216,7 +208,7 @@ <h3>Deliver True Personalization</h3>
216208
</div>
217209
</div>
218210
<div class="col-md-4">
219-
<div data-aos="fade-up" data-aos-delay="300">
211+
<div>
220212
<div class="feature-item">
221213
<div class="icon-circle">
222214
<i class="fa-solid fa-gears"></i>
@@ -241,7 +233,7 @@ <h3>Unlock Complex Workflows</h3>
241233
=========================================================-->
242234
<div class="solution-area mtb-192">
243235
<div class="container">
244-
<div data-aos="fade-up" data-aos-duration="1000">
236+
<div>
245237
<div class="row">
246238
<div class="col-md-12">
247239
<h2 class="title-2">
@@ -252,14 +244,14 @@ <h2 class="title-2">
252244
<div class="solution-item">
253245
<div class="row align-items-stretch flex-row-reverse">
254246
<div class="col-lg-6 mb-4 mb-lg-0">
255-
<div data-aos="fade-up" data-aos-delay="200">
247+
<div>
256248
<div class="solution-item-list h-100 d-flex justify-content-center align-items-center">
257249
<img src="{{ `img/MemMachine_Architecture-Dark.png` | relURL }}" alt="MemMachine Architecture Diagram" class="img-fluid" />
258250
</div>
259251
</div>
260252
</div>
261253
<div class="col-lg-6">
262-
<div data-aos="fade-up" data-aos-duration="800">
254+
<div>
263255
<div class="solution-item-list h-100">
264256
<div class="solution-single">
265257
<div class="icon-circle">
@@ -308,37 +300,15 @@ <h4>Data is Persisted to Databases</h4>
308300
=========================================================-->
309301
<div class="solution-area mtb-192">
310302
<div class="container">
311-
<div data-aos="fade-up" data-aos-duration="1000">
303+
<div>
312304
<div class="row">
313305
<div class="col-md-12">
314306
<h2 class="title-2">
315307
Build Intelligent Solutions with <span>Agent Memory</span>
316308
</h2>
317309
</div>
318-
<!--
319-
<div class="col-md-12">
320-
<div class="solution-item">
321-
<div data-aos="fade-up" data-aos-duration="800">
322-
<div class="row align-items-center">
323-
<div class="col-md-6 pr-47">
324-
<img src="{{ `/img/solution.svg` | relURL }}" alt="solution" />
325-
</div>
326-
<div class="col-md-6 pl-47">
327-
<h3>Seamless Integrations</h3>
328-
<p>
329-
Effortlessly add memory your agents. MemMachine simple
330-
memory APIs allow for a quick and seamless developer experience.
331-
</p>
332-
<a href="{{ "integrations" | relLangURL }}" class="btn btn-secondary"
333-
>Learn more</a>
334-
</div>
335-
</div>
336-
</div>
337-
</div>
338-
-->
339-
340310
<div class="solution-item">
341-
<div data-aos="fade-up" data-aos-duration="800">
311+
<div>
342312
<div class="row align-items-center">
343313
<div class="col-md-6 pr-47">
344314
<h3>Build <span>Smart Agents</span> for Any Use Case</h3>

0 commit comments

Comments
 (0)