feat: launch public product website

This commit is contained in:
2026-08-20 20:13:35 -04:00
parent d3c30859b2
commit 81109f36ea
41 changed files with 4378 additions and 386 deletions
+15 -2
View File
@@ -1,6 +1,19 @@
export function SectionLabel({ children }: { children: React.ReactNode }) {
import { cn } from "~/lib/utils";
export function SectionLabel({
children,
className,
}: {
children: React.ReactNode;
className?: string;
}) {
return (
<p className="text-xs font-semibold tracking-widest text-muted-foreground uppercase">
<p
className={cn(
"text-muted-foreground text-xs font-semibold tracking-widest uppercase",
className,
)}
>
{children}
</p>
);