'use client'; import React, {CSSProperties} from "react"; import clsx from "clsx"; interface SectionProps { children: React.ReactNode; className?: string; style?: CSSProperties; shadow?: boolean; } const Section: React.FC = ({ children, className = "", style, shadow = false, }) => { return (
{children}
{shadow && (
)}
); }; export default Section;