render targets in table, update targets

This commit is contained in:
Milo Schwartz 2024-11-12 23:59:47 -05:00
parent 93ea7e4620
commit cf3cf4d827
No known key found for this signature in database
16 changed files with 744 additions and 472 deletions

View file

@ -0,0 +1,16 @@
type SettingsSectionTitleProps = {
title: string | React.ReactNode;
description: string | React.ReactNode;
};
export default function SettingsSectionTitle({
title,
description,
}: SettingsSectionTitleProps) {
return (
<div className="space-y-0.5 select-none mb-6">
<h2 className="text-2xl font-bold tracking-tight">{title}</h2>
<p className="text-muted-foreground">{description}</p>
</div>
);
}