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 (
|
2026-02-07 15:45:35 +00:00
|
|
|
<Card variant="glass" className="p-6 border-white/5 bg-black/20 backdrop-blur-xl hover-glow-cyan transition-shadow duration-300">
|
|
|
|
|
<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
|
|
|
);
|
|
|
|
|
}
|