import { ShadowContainer } from "@/components/design/ShadowContainer" export interface SkillsSectionProps { title: string children: React.ReactNode } export const SkillsSection = (props: SkillsSectionProps): JSX.Element => { const { title, children } = props return (

{title}

{children}
) }