"use client"; import Image from "next/image"; import { useState } from "react"; import { Autoplay } from "swiper/modules"; import { Swiper, SwiperSlide } from "swiper/react"; type HeroSlideItem = { title: string; description: string; img: string; }; export default function HeroSlider() { const [slideItems] = useState([ { title: "Full-Service Veteran-Owned Real Estate Company", description: "Dynamic Realty is a full-service veteran-owned real estate company based in Centerville, GA, established in 2004. Our services include buying & selling, rentals, & property management. We strive to provide a service that meets the needs of all our customers & are proud to have been helping people with their real estate needs for the past 20 years.", img: "/images/bg-header4.jpg", }, { title: "Comprehensive Range of Realty Services", description: "Our services include buying & selling, renting, & property management. We understand the real estate sector inside out & are committed to providing a professional service to our clients. We strive to make the process of reaching your real estate goals as easy & stress-free as possible.", img: "/images/bg-header5.jpg", }, ]); return (
{slideItems.map((slide, idx) => ( {slide.title}
Logo
Logo
{slide.title}
{slide.description}
{/*
*/}
))}
{/* */}
); }