2026-02-06 20:59:42 +00:00
|
|
|
import React from 'react';
|
2026-02-07 15:45:35 +00:00
|
|
|
import { Card } from '@/components/ui/card';
|
2026-02-06 20:59:42 +00:00
|
|
|
|
|
|
|
|
export function SettingsViewHeader() {
|
|
|
|
|
return (
|
feat(web): UI premium Discord/Spotify-like — tokens, shadows, focus, layout
Plan UI premium 6–8 semaines (design system, shell, Storybook, a11y):
- Design system: DESIGN_TOKENS.md, APP_SHELL.md, FULL_LAYOUT_PAGE.md. Single source
for layout/shell (index.css), shadows (design-system.css), durations/easing.
- Tokens: shadow-cover-depth, shadow-gold-glow, shadow-fab-glow; layout max-height
(max-h-layout-drawer, max-h-layout-panel, max-h-layout-list). All duration-200/300/500
replaced by --duration-fast/normal/slow. Arbitrary shadows replaced by token classes.
- Shell & player: Sidebar, Header, GlobalPlayer, MiniPlayer, PlayerQueue, PlayerControls,
AudioPlayer use tokens; focus-visible on Sidebar, PlayerQueue, DropdownMenuTrigger/Item,
TabsTrigger. Typography: text-[10px]/[9px] → text-xs where applicable.
- ESLint: no-restricted-syntax (warn) for w-/h-/rounded-/shadow-/text-/spacing arbitrary.
- Scripts: report-arbitrary-values.mjs, capture/compare/generate visual; visual-complete.spec.ts.
- Stories full layout: Dashboard, Playlists, Library, Settings, Profile in DashboardLayout.stories.
- .cursorrules + README: DESIGN_TOKENS, APP_SHELL, visual commands, no arbitrary without justification.
- apps/web/.gitignore: e2e test artifacts (test-results-visual, playwright-report-visual).
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-08 16:15:58 +00:00
|
|
|
<Card variant="glass" className="p-6 border-white/5 bg-black/20 backdrop-blur-xl hover-glow-cyan transition-shadow duration-[var(--duration-normal)]">
|
2026-02-07 15:45:35 +00:00
|
|
|
<h2 className="text-3xl font-display font-bold text-foreground mb-2">SETTINGS</h2>
|
2026-02-07 08:41:19 +00:00
|
|
|
<p className="text-muted-foreground font-mono text-sm">
|
2026-02-06 20:59:42 +00:00
|
|
|
Configure your studio, account, and preferences.
|
|
|
|
|
</p>
|
2026-02-07 15:45:35 +00:00
|
|
|
</Card>
|
2026-02-06 20:59:42 +00:00
|
|
|
);
|
|
|
|
|
}
|