"use client" import { useState, useEffect } from "react"; import Image from "next/image"; import { motion } from "framer-motion"; // Типы для свойств компонента interface HeroProps { images?: string[]; } export default function Hero({ images = [] }: HeroProps) { return (