2026-03-02T08-40-22_auto_memory/memories.db-wal

This commit is contained in:
Nicholai Vogel 2026-03-02 01:40:22 -07:00
parent 6699f94ce2
commit 34d1c42fc4

View File

@ -0,0 +1,123 @@
import { SIGNET_URL } from "@/consts";
export default function StepPowerUser() {
return (
<div className="space-y-6">
<div>
<h2 className="text-2xl font-bold text-text mb-2">
You're All Set Now Level Up
</h2>
<p className="text-text-muted">
Your memory is imported. Here's how to go further if you're a power
user or developer.
</p>
</div>
<div className="grid grid-cols-1 md:grid-cols-3 gap-4">
<a
href={SIGNET_URL}
target="_blank"
rel="noopener noreferrer"
className="group rounded-xl bg-surface-muted border border-surface-border p-6 hover:border-accent/50 transition-all"
>
<div className="w-10 h-10 rounded-lg bg-accent/10 flex items-center justify-center mb-4 group-hover:bg-accent/20 transition-colors">
<svg
width="20"
height="20"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
className="text-accent"
>
<circle cx="12" cy="12" r="10" />
<path d="M12 6v6l4 2" />
</svg>
</div>
<h3 className="text-base font-semibold text-text mb-2">
Signet AI
</h3>
<p className="text-sm text-text-muted leading-relaxed">
Persistent memory that syncs across Claude, ChatGPT, Claude Code,
and any AI tool. Never re-import again.
</p>
<span className="inline-block mt-3 text-xs text-accent group-hover:underline">
signetai.sh
</span>
</a>
<a
href="https://claude.ai/download"
target="_blank"
rel="noopener noreferrer"
className="group rounded-xl bg-surface-muted border border-surface-border p-6 hover:border-primary/50 transition-all"
>
<div className="w-10 h-10 rounded-lg bg-primary/10 flex items-center justify-center mb-4 group-hover:bg-primary/20 transition-colors">
<svg
width="20"
height="20"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
className="text-primary-light"
>
<polyline points="4 17 10 11 4 5" />
<line x1="12" y1="19" x2="20" y2="19" />
</svg>
</div>
<h3 className="text-base font-semibold text-text mb-2">
Claude Code
</h3>
<p className="text-sm text-text-muted leading-relaxed">
AI-powered coding in your terminal. Understands your codebase,
writes code, runs commands. For developers.
</p>
<span className="inline-block mt-3 text-xs text-primary-light group-hover:underline">
Get Claude Code
</span>
</a>
<a
href="https://github.com/openclaw/openclaw"
target="_blank"
rel="noopener noreferrer"
className="group rounded-xl bg-surface-muted border border-surface-border p-6 hover:border-text-muted/50 transition-all"
>
<div className="w-10 h-10 rounded-lg bg-text-muted/10 flex items-center justify-center mb-4 group-hover:bg-text-muted/20 transition-colors">
<svg
width="20"
height="20"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
className="text-text-muted"
>
<path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 00-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0020 4.77 5.07 5.07 0 0019.91 1S18.73.65 16 2.48a13.38 13.38 0 00-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 005 4.77a5.44 5.44 0 00-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 009 18.13V22" />
</svg>
</div>
<h3 className="text-base font-semibold text-text mb-2">
OpenClaw
</h3>
<p className="text-sm text-text-muted leading-relaxed">
Open-source Claude Code alternative. Customizable, extensible,
community-driven. Pairs well with Signet.
</p>
<span className="inline-block mt-3 text-xs text-text-muted group-hover:underline">
View on GitHub
</span>
</a>
</div>
<div className="rounded-xl bg-accent/5 border border-accent/20 p-5 text-center">
<p className="text-sm text-text-muted">
Migration complete. Welcome to Claude.{" "}
<span className="text-accent">
Your AI finally remembers you.
</span>
</p>
</div>
</div>
);
}