import * as React from "react"; import { cn } from "@/lib/utils"; const Section = React.forwardRef< HTMLDivElement, React.HTMLAttributes >(({ className, ...props }, ref) => (
)); Section.displayName = "Section"; const SectionHeader = React.forwardRef< HTMLDivElement, React.HTMLAttributes >(({ className, ...props }, ref) => (
)); SectionHeader.displayName = "SectionHeader"; const SectionTitle = React.forwardRef< HTMLParagraphElement, React.HTMLAttributes >(({ className, ...props }, ref) => (

)); SectionTitle.displayName = "SectionTitle"; const SectionContent = React.forwardRef< HTMLDivElement, React.HTMLAttributes >(({ className, ...props }, ref) => (
)); SectionContent.displayName = "SectionContent"; export { Section, SectionHeader, SectionTitle, SectionContent };