blob: 197586d692b8c4c7897434b4221131db2158c592 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
---
title: "Introduction"
description: "supermemory is the Memory API for the AI era"
mode: "custom"
---
export const HeroCard = ({ imageUrl, title, description, href }) => {
return (
<a className="group flex flex-col h-full rounded-lg overflow-hidden hover:shadow-lg transition-all duration-300 border border-gray-100 dark:border-zinc-800 hover:border-gray-200 dark:hover:border-zinc-700" href={href}>
<div className="overflow-hidden">
<img
src={imageUrl}
className="w-full h-48 object-cover transform group-hover:scale-105 transition-all duration-500"
alt={title}
/>
</div>
<div className="p-6">
<h3 className="text-xl font-semibold text-gray-900 dark:text-zinc-50">{title}</h3>
<p className="mt-3 text-gray-600 dark:text-zinc-400">{description}</p>
</div>
</a>
)
}
<div className="relative pb-12">
<div className="px-4 py-16 lg:py-32 max-w-4xl mx-auto">
<h1 className="text-5xl font-bold text-center text-gray-900 dark:text-zinc-50 tracking-tight">
supermemory <span className="text-primary font-medium">[docs]</span>
</h1>
<p className="max-w-2xl mx-auto px-4 mt-6 text-xl text-center text-gray-600 dark:text-zinc-400 leading-relaxed">
Meet the memory API for the AI era — <span className="font-medium">scalable</span>, <span className="font-medium">powerful</span>, <span className="font-medium">affordable</span>, and <span className="font-medium">production-ready</span>.
</p>
<div className="mt-16 lg:mt-20 grid sm:grid-cols-2 gap-8">
<HeroCard
imageUrl="https://imagedelivery.net/_Zs8NCbSWCQ8-iurXrWjBg/40fe287e-b392-4bd6-9fc5-128ef674ca00/public"
title="Memory APIs"
description="Use our hyper fast, scalable and composable APIs for memory and RAG"
href="/intro"
/>
<HeroCard
imageUrl="https://imagedelivery.net/_Zs8NCbSWCQ8-iurXrWjBg/9af9572c-9f8d-42d8-f7d0-503a5f87a300/public"
title="User profiles"
description="One line to add memory to your app. Supercharge your LLM with supermemory's intelligent context management."
href="/memory-router/overview"
/>
<HeroCard
imageUrl="https://imagedelivery.net/_Zs8NCbSWCQ8-iurXrWjBg/abcc107d-7271-4acf-a9a2-90ad7a6f2000/public"
title="SDKs"
description="Use supermemory with your favorite tools and platforms seamlessly."
href="/memory-api/sdks/overview"
/>
<HeroCard
imageUrl="https://imagedelivery.net/_Zs8NCbSWCQ8-iurXrWjBg/eda8b2fd-9633-4e93-c6bd-10b44be75e00/public"
title="Cookbooks"
description="Get started with supermemory with tutorials and examples"
href="/cookbook/overview"
/>
</div>
</div>
</div>
|