mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-08-29 06:15:39 -04:00
Clean up settings section design: consolidate backup cards, add hover-reveal actions with tooltips, improve icon sizing across components, and replace custom timeAgo helper with date-fns formatDistanceToNow in webhook card. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
51 lines
1.3 KiB
TypeScript
51 lines
1.3 KiB
TypeScript
"use client";
|
|
|
|
import { IconSettings } from "@tabler/icons-react";
|
|
import { motion } from "motion/react";
|
|
import { Children, type ReactNode } from "react";
|
|
|
|
const sectionVariants = {
|
|
hidden: { opacity: 0, y: 20 },
|
|
visible: {
|
|
opacity: 1,
|
|
y: 0,
|
|
transition: { type: "spring" as const, stiffness: 200, damping: 24 },
|
|
},
|
|
};
|
|
|
|
export function SettingsShell({
|
|
children,
|
|
footer,
|
|
}: {
|
|
children: ReactNode;
|
|
footer?: ReactNode;
|
|
}) {
|
|
return (
|
|
<motion.div
|
|
className="mx-auto max-w-2xl space-y-8"
|
|
initial="hidden"
|
|
animate="visible"
|
|
variants={{
|
|
hidden: {},
|
|
visible: { transition: { staggerChildren: 0.15 } },
|
|
}}
|
|
>
|
|
<motion.div variants={sectionVariants}>
|
|
<div className="flex items-center gap-2">
|
|
<IconSettings className="size-5 text-primary" />
|
|
<h1 className="font-display text-3xl tracking-tight">Settings</h1>
|
|
</div>
|
|
<p className="mt-1 text-sm text-muted-foreground">
|
|
Manage your account and preferences
|
|
</p>
|
|
</motion.div>
|
|
|
|
{Children.map(children, (child) => (
|
|
<motion.div variants={sectionVariants}>{child}</motion.div>
|
|
))}
|
|
|
|
{footer && <motion.div variants={sectionVariants}>{footer}</motion.div>}
|
|
</motion.div>
|
|
);
|
|
}
|