2026-03-02T08-38-46_auto_memory/memories.db-wal
This commit is contained in:
parent
542da44296
commit
b9e7f2b3aa
115
chatgpt-to-claude/src/components/Footer.tsx
Normal file
115
chatgpt-to-claude/src/components/Footer.tsx
Normal file
@ -0,0 +1,115 @@
|
||||
export default function Footer() {
|
||||
const year = new Date().getFullYear();
|
||||
|
||||
return (
|
||||
<footer className="border-t border-surface-border bg-surface-muted">
|
||||
<div className="max-w-6xl mx-auto px-4 sm:px-6 py-12">
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||||
<div>
|
||||
<h3 className="text-lg font-bold text-text mb-3">
|
||||
ChatGPT → Claude
|
||||
</h3>
|
||||
<p className="text-sm text-text-muted leading-relaxed">
|
||||
Free migration tool. No backend, no data collection. Everything
|
||||
stays in your browser.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h4 className="text-sm font-semibold text-text mb-3 uppercase tracking-wider">
|
||||
Navigation
|
||||
</h4>
|
||||
<ul className="space-y-2">
|
||||
<li>
|
||||
<a
|
||||
href="/"
|
||||
className="text-sm text-text-muted hover:text-text transition-colors"
|
||||
>
|
||||
Home
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="/wizard/"
|
||||
className="text-sm text-text-muted hover:text-text transition-colors"
|
||||
>
|
||||
Migration Wizard
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="/blog/"
|
||||
className="text-sm text-text-muted hover:text-text transition-colors"
|
||||
>
|
||||
Blog
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h4 className="text-sm font-semibold text-text mb-3 uppercase tracking-wider">
|
||||
Resources
|
||||
</h4>
|
||||
<ul className="space-y-2">
|
||||
<li>
|
||||
<a
|
||||
href="https://signetai.sh"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="text-sm text-text-muted hover:text-accent transition-colors"
|
||||
>
|
||||
Signet AI — Persistent Memory
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="https://claude.com/import-memory"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="text-sm text-text-muted hover:text-text transition-colors"
|
||||
>
|
||||
Claude Memory Import
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="/privacy/"
|
||||
className="text-sm text-text-muted hover:text-text transition-colors"
|
||||
>
|
||||
Privacy Policy
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="/terms/"
|
||||
className="text-sm text-text-muted hover:text-text transition-colors"
|
||||
>
|
||||
Terms of Use
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="mt-8 pt-8 border-t border-surface-border flex flex-col sm:flex-row items-center justify-between gap-4">
|
||||
<p className="text-xs text-text-muted">
|
||||
© {year} chatgpt-to-claude.com. Not affiliated with Anthropic
|
||||
or OpenAI.
|
||||
</p>
|
||||
<p className="text-xs text-text-muted">
|
||||
Built with care.{" "}
|
||||
<a
|
||||
href="https://signetai.sh"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="text-accent hover:text-accent-dark transition-colors"
|
||||
>
|
||||
Powered by Signet
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
}
|
||||
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user