Initial commit - Route Commerce platform

This commit is contained in:
2026-06-01 19:40:55 +00:00
commit 53a9671461
617 changed files with 106132 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
type SectionHeaderProps = {
title: string;
description?: string;
titleClassName?: string;
descClassName?: string;
};
export default function SectionHeader({
title,
description,
titleClassName,
descClassName,
}: SectionHeaderProps) {
return (
<div className="mb-8">
<h2 className={`text-3xl font-bold tracking-tight text-stone-950 ${titleClassName ?? ""}`}>
{title}
</h2>
{description && (
<p className={`mt-2 max-w-2xl text-stone-700 leading-relaxed ${descClassName ?? ""}`}>
{description}
</p>
)}
</div>
);
}