diff --git a/app/App.jsx b/app/App.jsx index 76c1fc4..9fbfaa0 100644 --- a/app/App.jsx +++ b/app/App.jsx @@ -1,6 +1,7 @@ import { Navbar } from "./components/Navbar/Navbar"; import { Inter } from "next/font/google"; const inter = Inter({ subsets: ["latin"] }); + export const App = (props) => { return (
diff --git a/app/components/ReleaseCourusel/ReleaseCourusel.jsx b/app/components/ReleaseCourusel/ReleaseCourusel.jsx index a2441e7..767a000 100644 --- a/app/components/ReleaseCourusel/ReleaseCourusel.jsx +++ b/app/components/ReleaseCourusel/ReleaseCourusel.jsx @@ -1,24 +1,67 @@ "use client"; +import { useEffect, useRef } from "react"; import { ReleaseLink } from "../ReleaseLink/ReleaseLink"; +import Link from "next/link"; + +import Styles from "./ReleaseCourusel.module.css"; +import Swiper from "swiper"; +import "swiper/css"; +import "swiper/css/navigation"; +import { Navigation } from "swiper/modules"; + export const ReleaseCourusel = (props) => { + useEffect(() => { + const options = { + direction: "horizontal", + spaceBetween: 8, + allowTouchMove: true, + slidesPerView: "auto", + navigation: { + enabled: false, + nextEl: ".swiper-button-next", + prevEl: ".swiper-button-prev", + }, + breakpoints: { + 450: { + navigation: { + enabled: true, + }, + }, + }, + modules: [Navigation], + }; + new Swiper(".swiper", options); + }, []); + return ( -Показать все
- +Показать все
+{grade}
{props.status.name}
{props.title_ru}
+{props.title_ru}