Skip to content

Commit 46f1be5

Browse files
phernandezclaude
andcommitted
feat: add horizontal hero with image on homepage
- Add computer.png image to hero section - Use horizontal orientation for hero layout - Reduce vertical padding for tighter layout Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent fc7b3ed commit 46f1be5

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

.github/workflows/claude.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
types: [submitted]
1212

1313
jobs:
14-
claude:
14+
AI:
1515
if: |
1616
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
1717
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
@@ -47,4 +47,3 @@ jobs:
4747
# See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md
4848
# or https://docs.claude.com/en/docs/claude-code/cli-reference for available options
4949
# claude_args: '--allowed-tools Bash(gh pr:*)'
50-
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<template>
2+
<img :src="src" :alt="alt" class="w-full max-w-lg" />
3+
</template>
4+
5+
<script setup lang="ts">
6+
defineProps<{
7+
src: string
8+
alt?: string
9+
}>()
10+
</script>

content/index.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,18 @@ seo:
55
---
66

77
::u-page-hero
8+
---
9+
orientation: horizontal
10+
class: py-0
11+
---
12+
813
#title
914
AI memory that grows with you.
1015

1116
#description
12-
Build persistent knowledge that both you and AI can read, write, and enhance together.
17+
Build persistent knowledge that both you and AI can read, write, and enhance together.
18+
Learn how it works.
19+
See why your AI needs Basic Memory.
1320

1421
#links
1522
:::u-button
@@ -42,9 +49,15 @@ Build persistent knowledge that both you and AI can read, write, and enhance tog
4249
---
4350
v0.18 →
4451
:::
52+
53+
#default
54+
![Basic Memory](/computer.png)
4555
::
4656

4757
::u-page-section
58+
---
59+
class: pt-0
60+
---
4861
:::u-page-grid
4962
::::u-page-card
5063
---

public/computer.png

985 KB
Loading

0 commit comments

Comments
 (0)