import React from 'react'; import { Box, Typography, Button } from '@mui/material'; const Hero = ({ backgroundImage, useGradient, title, titleColor, text, textColor }) => { // Priorité pour appliquer le fond : Image > Dégradé > Aucun fond const backgroundStyle = backgroundImage ? `url(${backgroundImage}) center/cover no-repeat` : useGradient ? 'linear-gradient(to bottom, #0e467f, rgb(9, 48, 87))' : '#0e467f'; // Fallback couleur return ( {/* Titre */} {title} {/* Texte */} {text} {/* Bouton */} ); }; export default Hero;