der tenant admin hat eine neue, mobil unterstützende UI, login redirect funktioniert, typescript fehler wurden bereinigt. Neue Blog Posts von ChatGPT eingebaut, übersetzt von Gemini 2.5

This commit is contained in:
Codex Agent
2025-11-05 19:27:10 +01:00
parent adb93b5f9d
commit c6ac04eb15
44 changed files with 1995 additions and 1949 deletions

View File

@@ -0,0 +1,32 @@
import React from 'react';
import { Card } from '@/components/ui/card';
import { cn } from '@/lib/utils';
export const frostedCardClass = cn(
'border border-white/15 bg-white/92 text-slate-900 shadow-lg shadow-rose-400/10 backdrop-blur-lg',
'dark:border-slate-800/70 dark:bg-slate-950/85 dark:text-slate-100'
);
type FrostedCardProps = React.ComponentProps<typeof Card>;
export function FrostedCard({ className, ...props }: FrostedCardProps) {
return <Card className={cn(frostedCardClass, className)} {...props} />;
}
type FrostedSurfaceProps = React.HTMLAttributes<HTMLDivElement> & {
asChild?: boolean;
};
export function FrostedSurface({ className, ...props }: FrostedSurfaceProps) {
return (
<div
className={cn(
'rounded-2xl border border-white/15 bg-white/88 text-slate-900 shadow-lg shadow-rose-300/10 backdrop-blur-lg',
'dark:border-slate-800/70 dark:bg-slate-950/80 dark:text-slate-100',
className
)}
{...props}
/>
);
}