import React from 'react';
import { motion } from 'framer-motion';
const Section = ({
children,
className = "",
background = "dark",
padding = "large",
animate = true
}) => {
const paddingClasses = {
small: "py-12 px-6",
medium: "py-16 px-6",
large: "py-24 px-6",
xlarge: "py-32 px-6"
};
const backgroundClasses = {
dark: "bg-black",
darker: "bg-gray-900",
gradient: "bg-gradient-to-br from-gray-900 to-black",
transparent: "bg-transparent"
};
const content = (
);
if (animate) {
return (
{content}
);
}
return content;
};
export default Section;