diff --git a/src/components/BackgroundSection.tsx b/src/components/BackgroundSection.tsx new file mode 100644 index 0000000..fbb36ef --- /dev/null +++ b/src/components/BackgroundSection.tsx @@ -0,0 +1,22 @@ +import React, { FC } from "react"; + +export interface BackgroundSectionProps { + className?: string; + children?: React.ReactNode; +} + +const BackgroundSection: FC = ({ + className = "bg-neutral-100 dark:bg-black dark:bg-opacity-20 ", + children, +}) => { + return ( +
+ {children} +
+ ); +}; + +export default BackgroundSection;