Add intro blurb with illustration to advanced settings page

This commit is contained in:
Chad Curtis
2026-02-26 21:49:28 -06:00
parent 317cf6376c
commit 26ff72bfd2
+12
View File
@@ -1,6 +1,7 @@
import { useSeoMeta } from '@unhead/react';
import { ArrowLeft } from 'lucide-react';
import { Link } from 'react-router-dom';
import { IntroImage } from '@/components/IntroImage';
import { AdvancedSettings } from '@/components/AdvancedSettings';
import { WalletSettings } from '@/components/WalletSettings';
import { useCurrentUser } from '@/hooks/useCurrentUser';
@@ -36,6 +37,17 @@ export function AdvancedSettingsPage() {
</div>
<div className="p-4">
{/* Intro */}
<div className="flex items-center gap-4 px-3 pt-2 pb-4">
<IntroImage src="/advanced-intro.png" />
<div className="min-w-0">
<h2 className="text-sm font-semibold">Power User Settings</h2>
<p className="text-xs text-muted-foreground mt-1 leading-relaxed">
Wallet connections, system configuration, and other advanced options.
</p>
</div>
</div>
{/* Wallet collapsible — only when logged in */}
{user && (
<Collapsible open={walletOpen} onOpenChange={setWalletOpen}>