-
Notifications
You must be signed in to change notification settings - Fork 1k
docs(website): refresh agent-memory.dev for v0.9.15+ #415
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
8c05b0b
docs(website): refresh agent-memory.dev for v0.9.15+ DevEx surface
rohitg00 cde75a9
chore(website): refresh generated-meta timestamp
rohitg00 c512ad5
feat(website): AS FEATURED IN bar — AlphaSignal, AAIF, Trendshift
rohitg00 518d3ed
feat(website): real logos in AS FEATURED IN bar
rohitg00 78be2c7
feat(website): use real AAIF wordmark logo + center 3-card grid
rohitg00 2de8a99
fix(website): coderabbit PR #415 — meta drift + a11y + dead CSS
rohitg00 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,137 @@ | ||
| .wrap { | ||
| padding: 48px 0 56px; | ||
| background: var(--ink); | ||
| border-top: 1px solid var(--charcoal); | ||
| border-bottom: 1px solid var(--charcoal); | ||
| } | ||
| .inner { | ||
| max-width: 1100px; | ||
| margin: 0 auto; | ||
| padding: 0 40px; | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: 22px; | ||
| align-items: center; | ||
| } | ||
| .eyebrow { | ||
| font-family: var(--font-mono); | ||
| font-size: 11px; | ||
| letter-spacing: 2.4px; | ||
| color: var(--ash); | ||
| text-transform: uppercase; | ||
| display: flex; | ||
| align-items: center; | ||
| gap: 12px; | ||
| width: 100%; | ||
| justify-content: center; | ||
| } | ||
| .eyebrow::before, | ||
| .eyebrow::after { | ||
| content: ""; | ||
| flex: 0 0 80px; | ||
| height: 1px; | ||
| background: var(--charcoal); | ||
| } | ||
| .row { | ||
| display: grid; | ||
| grid-template-columns: minmax(220px, 1fr) minmax(240px, 1.3fr) minmax(220px, 1fr); | ||
| gap: 24px; | ||
| width: 100%; | ||
| max-width: 1000px; | ||
| align-items: stretch; | ||
| } | ||
| .cell { | ||
| position: relative; | ||
| display: grid; | ||
| grid-template-columns: 56px 1fr auto; | ||
| gap: 14px; | ||
| align-items: center; | ||
| padding: 18px 22px; | ||
| border: 1px solid var(--charcoal); | ||
| background: var(--iron); | ||
| text-decoration: none; | ||
| color: var(--white); | ||
| transition: border-color 0.12s ease, transform 0.12s ease, background 0.12s ease; | ||
| min-height: 96px; | ||
| } | ||
| .cell:hover, | ||
| .cell:focus-visible { | ||
| border-color: var(--gold); | ||
| transform: translateY(-1px); | ||
| background: #16161a; | ||
| } | ||
| .cell:focus-visible { | ||
| outline: 2px solid var(--gold); | ||
| outline-offset: 2px; | ||
| } | ||
| .cellBadge { | ||
| display: flex; | ||
| flex-direction: column; | ||
| align-items: center; | ||
| justify-content: center; | ||
| gap: 10px; | ||
| padding: 16px 16px; | ||
| } | ||
|
coderabbitai[bot] marked this conversation as resolved.
|
||
| .logo { | ||
| width: 56px; | ||
| height: 56px; | ||
| border-radius: 8px; | ||
| object-fit: cover; | ||
| background: var(--ink); | ||
| } | ||
| .badgeImg { | ||
| width: 100%; | ||
| height: auto; | ||
| max-width: 260px; | ||
| max-height: 60px; | ||
| object-fit: contain; | ||
| display: block; | ||
| } | ||
| .invertLogo { | ||
| filter: invert(1) brightness(1.05); | ||
| max-height: 64px; | ||
| max-width: 280px; | ||
| } | ||
| .meta { | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: 4px; | ||
| min-width: 0; | ||
| } | ||
| .name { | ||
| font-family: var(--font-mono); | ||
| font-size: 14px; | ||
| letter-spacing: 0.6px; | ||
| color: var(--white); | ||
| font-weight: 700; | ||
| text-transform: uppercase; | ||
| overflow: hidden; | ||
| text-overflow: ellipsis; | ||
| white-space: nowrap; | ||
| } | ||
| .sub { | ||
| font-family: var(--font-mono); | ||
| font-size: 11px; | ||
| letter-spacing: 0.8px; | ||
| color: var(--steel); | ||
| text-transform: uppercase; | ||
| } | ||
| .arrow { | ||
| font-family: var(--font-mono); | ||
| color: var(--ash); | ||
| font-size: 14px; | ||
| transition: color 0.12s ease, transform 0.12s ease; | ||
| } | ||
| .cell:hover .arrow { | ||
| color: var(--gold); | ||
| transform: translate(2px, -2px); | ||
| } | ||
| @media (max-width: 720px) { | ||
| .row { | ||
| grid-template-columns: 1fr; | ||
| max-width: 380px; | ||
| } | ||
| .wrap { | ||
| padding: 32px 0 40px; | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,104 @@ | ||
| import Image from "next/image"; | ||
| import styles from "./FeaturedIn.module.css"; | ||
|
|
||
| interface Feature { | ||
| name: string; | ||
| sub: string; | ||
| href: string; | ||
| logo: string; | ||
| logoAlt: string; | ||
| // When the source has its own brand-mark image (e.g. Trendshift's | ||
| // badge endpoint that bakes the repo's star count into the image), | ||
| // render it full-width instead of the logo-left text-right layout. | ||
| badge?: boolean; | ||
| } | ||
|
|
||
| const ITEMS: Feature[] = [ | ||
| { | ||
| name: "AlphaSignal", | ||
| sub: "180K technical subscribers", | ||
| href: "https://alphasignalai.substack.com/p/how-agentmemory-works-and-how-to", | ||
| logo: "https://avatars.githubusercontent.com/u/64016073?s=200&v=4", | ||
| logoAlt: "AlphaSignal logo", | ||
| }, | ||
| { | ||
| name: "Agentic AI Foundation", | ||
| sub: "Linux Foundation backed", | ||
| href: "https://aaif.io/", | ||
| logo: "/featured/aaif-logo.png", | ||
| logoAlt: "Agentic AI Foundation logo", | ||
| badge: true, | ||
| }, | ||
| { | ||
| name: "Trendshift", | ||
| sub: "Position #19 · NEW 2026", | ||
| href: "https://trendshift.io/repositories/25123", | ||
| logo: "https://trendshift.io/api/badge/repositories/25123", | ||
| logoAlt: "Trendshift badge for agentmemory", | ||
| badge: true, | ||
| }, | ||
| ]; | ||
|
|
||
| export function FeaturedIn() { | ||
| return ( | ||
| <section className={styles.wrap} aria-labelledby="featured-in-title"> | ||
| <div className={styles.inner}> | ||
| <div id="featured-in-title" className={styles.eyebrow}> | ||
| AS FEATURED IN | ||
| </div> | ||
| <div className={styles.row}> | ||
| {ITEMS.map((it) => | ||
| it.badge ? ( | ||
| <a | ||
| key={it.name} | ||
| className={`${styles.cell} ${styles.cellBadge}`} | ||
| href={it.href} | ||
| target="_blank" | ||
| rel="noopener" | ||
| aria-label={`${it.name} — ${it.sub}`} | ||
|
Comment on lines
+52
to
+58
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add Line 57 and Line 80 currently use Suggested patch- rel="noopener"
+ rel="noopener noreferrer"
...
- rel="noopener"
+ rel="noopener noreferrer"Also applies to: 75-81 🤖 Prompt for AI Agents |
||
| > | ||
| <Image | ||
| src={it.logo} | ||
| alt={it.logoAlt} | ||
| width={250} | ||
| height={55} | ||
| unoptimized | ||
| className={ | ||
| it.logo.startsWith("/featured/aaif") | ||
| ? `${styles.badgeImg} ${styles.invertLogo}` | ||
| : styles.badgeImg | ||
| } | ||
| /> | ||
| <span className={styles.sub}>{it.sub}</span> | ||
| </a> | ||
| ) : ( | ||
| <a | ||
| key={it.name} | ||
| className={styles.cell} | ||
| href={it.href} | ||
| target="_blank" | ||
| rel="noopener" | ||
| > | ||
| <Image | ||
| src={it.logo} | ||
| alt={it.logoAlt} | ||
| width={56} | ||
| height={56} | ||
| unoptimized | ||
| className={styles.logo} | ||
| /> | ||
| <div className={styles.meta}> | ||
| <span className={styles.name}>{it.name}</span> | ||
| <span className={styles.sub}>{it.sub}</span> | ||
| </div> | ||
| <span className={styles.arrow} aria-hidden> | ||
| ↗ | ||
| </span> | ||
| </a> | ||
| ), | ||
| )} | ||
| </div> | ||
| </div> | ||
| </section> | ||
| ); | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.