Files
gitlab-instance-0a899031_no…/app/cloudphone/components/Section.tsx
2026-03-10 11:48:50 -05:00

17 lines
394 B
TypeScript

import { type ReactNode } from "react";
type SectionProps = {
children: ReactNode;
className?: string;
};
export function Section({ children, className = "" }: SectionProps) {
return (
<section
className={`border-t border-[var(--border)] py-12 md:py-16 lg:py-20 ${className}`}
>
<div className="mx-auto max-w-6xl px-4 sm:px-6">{children}</div>
</section>
);
}