2026-02-06 20:59:42 +00:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
|
|
export function SettingsViewHeader() {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<h2 className="text-3xl font-display font-bold text-white 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>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|