"use client"; import { motion } from "framer-motion"; import Image from "next/image"; import Text from "../lib_components/text"; import { Swiper, SwiperSlide } from "swiper/react"; import { Navigation, Autoplay } from "swiper/modules"; import "swiper/css"; import "swiper/css/navigation"; import { ArrowLeft, ArrowRight } from "lucide-react"; const slider = [ { id: 1, image: "/2.jpg", title: "Ishonchli SpesTexnika — sizning loyihangiz uchun eng yaxshi tanlov!", desc: "Biz eng so‘nggi texnikalar, maxsus transportlar va qurilish uskunalarini qulay narxda taqdim etamiz.", }, { id: 2, image: "/4.jpg", title: "Ishonchli SpesTexnika — sizning loyihangiz uchun eng yaxshi tanlov!", desc: "Biz eng so‘nggi texnikalar, maxsus transportlar va qurilish uskunalarini qulay narxda taqdim etamiz.", }, { id: 3, image: "/3.webp", title: "Ishonchli SpesTexnika — sizning loyihangiz uchun eng yaxshi tanlov!", desc: "Biz eng so‘nggi texnikalar, maxsus transportlar va qurilish uskunalarini qulay narxda taqdim etamiz.", }, ]; // The custom CSS selectors for navigation const navigationPrevEl = ".hero-swiper-prev"; const navigationNextEl = ".hero-swiper-next"; export default function HeroSection() { return (
{/* Custom buttons */} {slider.map((item, index) => (
{/* Chap tomondagi matn */}
{/* O‘ng tomondagi texnika rasmi */} SpetsTexnika yuk mashinasi
))}
); }