diff --git a/frontend/src/app/[locale]/layout.tsx b/frontend/src/app/[locale]/layout.tsx index dae498a9..ebbc8da2 100644 --- a/frontend/src/app/[locale]/layout.tsx +++ b/frontend/src/app/[locale]/layout.tsx @@ -73,7 +73,7 @@ export default async function LocaleLayout({ children, params }: Props) {
-
+
{/* Background Ambient Glow — same warm gold treatment as the landing page's .stellar-dune */} diff --git a/frontend/src/app/globals.css b/frontend/src/app/globals.css index f82b4c22..a203da3d 100644 --- a/frontend/src/app/globals.css +++ b/frontend/src/app/globals.css @@ -312,6 +312,24 @@ body:has(.stellar-landing) nav { display: none; } +/* Shared Stellar Analysis terminal surface */ +.terminal-surface { + font-family: var(--font-sans); + letter-spacing: -0.01em; +} + +.terminal-surface h1, +.terminal-surface h2, +.terminal-surface h3 { + font-family: var(--font-serif); + letter-spacing: -0.035em; +} + +.terminal-surface [class*="font-mono"] { + font-family: var(--font-mono); + letter-spacing: 0.08em; +} + body:has(.stellar-landing) main.flex-1 { margin-left: 0; } @@ -525,7 +543,7 @@ body:has(.stellar-landing) main.flex-1 { flex-shrink: 0; } -/* ─── Theme Toggle Button ─────────────────────────────────────────────── */ +/* ─── Theme Toggle Button ─────────────────────────────────────��───────── */ .theme-toggle-btn { display: flex; align-items: center; diff --git a/frontend/src/components/layout/header.tsx b/frontend/src/components/layout/header.tsx index 65136222..d65db8bb 100644 --- a/frontend/src/components/layout/header.tsx +++ b/frontend/src/components/layout/header.tsx @@ -4,6 +4,7 @@ import React, { useEffect, useRef } from "react"; import { Menu, Wallet, LogOut } from "lucide-react"; import { useWallet } from "../lib/wallet-context"; import { NotificationCenter } from "./notification-center"; +import { useNotifications } from "@/contexts/NotificationContext"; interface HeaderProps { onMenuToggle: () => void; @@ -89,7 +90,7 @@ export function Header({ onMenuToggle, sidebarOpen }: HeaderProps) { }; return ( -
+
{/* Left: Menu Toggle & Logo */}
diff --git a/frontend/src/components/layout/sidebar.tsx b/frontend/src/components/layout/sidebar.tsx index 1c9dac00..9b11a0dc 100644 --- a/frontend/src/components/layout/sidebar.tsx +++ b/frontend/src/components/layout/sidebar.tsx @@ -152,7 +152,7 @@ export function Sidebar({ open, onClose }: SidebarProps = {}) { return (