Skip to content

Commit 680fb90

Browse files
authored
Make heading consistent with react starter kit
1 parent c3882ce commit 680fb90

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

resources/js/components/heading.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1+
import { Separator } from '@/components/ui/separator';
2+
13
export default function Heading({ title, description }: { title: string; description?: string }) {
24
return (
35
<>
46
<div className="mb-8 space-y-0.5">
57
<h2 className="text-xl font-semibold tracking-tight">{title}</h2>
68
{description && <p className="text-muted-foreground text-sm">{description}</p>}
9+
<Separator className="my-6" />
710
</div>
811
</>
912
);

0 commit comments

Comments
 (0)