This commit is contained in:
2025-10-17 08:59:44 +02:00
parent 4c2c19152b
commit 98c7ce8f87
13 changed files with 229 additions and 70 deletions

View File

@@ -9,7 +9,7 @@ const heroImages = [
hero3
];
function Hero() {
export default function Hero() {
const [currentIndex, setCurrentIndex] = useState(0);
const nextSlide = useCallback(() => {
@@ -55,5 +55,3 @@ function Hero() {
</section>
);
}
export default Hero;