'use client' import React, { useState } from "react"; import Slider from "react-slick"; import Image from "next/image"; export default function SlickAsNav() { const [nav1, setNav1] = useState(); const [nav2, setNav2] = useState(); var settings = { slidesToShow: 3, responsive: [ { breakpoint: 991, settings: { slidesToShow: 2, }, }, { breakpoint: 420, settings: { slidesToShow: 1, }, }, ], }; return ( <> setNav1(slider1)} autoplay={true} > {/* Top Image slide */} setNav2(slider2)} swipeToSlide={true} focusOnSelect={true} className="slick-nav-custom" > 01 Personal Notes A place to think and track ideas for you and your team {/* /.block-style-eleven */} 02 Knowledge Base A home for your team, best practices and thoughts. {/* /.block-style-eleven */} 03 Products Doc Beautiful docs for your APIs, Products, FAQs, & User Guides, {/* /.block-style-eleven */} {/* Bottom text slide */} > ); }
A place to think and track ideas for you and your team
A home for your team, best practices and thoughts.
Beautiful docs for your APIs, Products, FAQs, & User Guides,