ultisuite-client/components/gmail/settings/settings-coming-soon.tsx
R3D347HR4Y 5304790ed5
Some checks are pending
E2E / Playwright e2e (push) Waiting to run
feat(auth): enhance session management and identity provider settings
- Added SessionGuard component to manage session expiration and online status.
- Updated AuthProvider to streamline session fetching and handling.
- Introduced IdentityProvidersSection for managing OAuth, SAML, and LDAP identity providers.
- Implemented identity provider guides for easier configuration.
- Enhanced mail settings with infinite scroll option for improved user experience.
- Updated global styles and layout components for better consistency across the application.
2026-06-09 09:36:46 +02:00

21 lines
643 B
TypeScript

import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
export function SettingsComingSoon({
title,
description,
}: {
title: string
description: string
}) {
return (
<Card className="mail-settings-card border-dashed border-mail-border bg-mail-surface py-4 shadow-sm dark:bg-mail-surface-elevated dark:shadow-[0_1px_4px_rgba(0,0,0,0.35)]">
<CardHeader className="px-4 pb-2">
<CardTitle className="text-sm font-medium">{title}</CardTitle>
</CardHeader>
<CardContent className="px-4 pt-0 text-sm text-muted-foreground">
{description}
</CardContent>
</Card>
)
}