veza/apps/web/src/components/views/settings-view/SettingsViewHeader.tsx

14 lines
495 B
TypeScript
Raw Normal View History

import React from 'react';
import { Card } from '@/components/ui/card';
export function SettingsViewHeader() {
return (
<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>
<p className="text-muted-foreground font-mono text-sm">
Configure your studio, account, and preferences.
</p>
</Card>
);
}