({ children, className, id }: SectionProps)
| 71 | }; |
| 72 | |
| 73 | const Section = ({ children, className, id }: SectionProps) => { |
| 74 | return ( |
| 75 | <section className={cn("py-8 md:py-12", className)} id={id}> |
| 76 | {children} |
| 77 | </section> |
| 78 | ); |
| 79 | }; |
| 80 | |
| 81 | // Container Component |
| 82 | type ContainerProps = { |