{"id":28665339,"url":"https://github.com/manishsinghtomar/card-slider_in_react","last_synced_at":"2026-04-17T12:33:12.910Z","repository":{"id":298472057,"uuid":"1000081351","full_name":"manishsinghtomar/Card-Slider_in_react","owner":"manishsinghtomar","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-11T08:38:08.000Z","size":6452,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-11T09:44:49.500Z","etag":null,"topics":["react-slick","react-slick-carousel","reactjs","tailwindcss"],"latest_commit_sha":null,"homepage":"https://card-slider-in-react.vercel.app/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/manishsinghtomar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-11T08:33:08.000Z","updated_at":"2025-06-11T08:44:47.000Z","dependencies_parsed_at":"2025-06-11T09:54:59.220Z","dependency_job_id":null,"html_url":"https://github.com/manishsinghtomar/Card-Slider_in_react","commit_stats":null,"previous_names":["manishsinghtomar/card-slider_in_react"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/manishsinghtomar/Card-Slider_in_react","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manishsinghtomar%2FCard-Slider_in_react","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manishsinghtomar%2FCard-Slider_in_react/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manishsinghtomar%2FCard-Slider_in_react/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manishsinghtomar%2FCard-Slider_in_react/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/manishsinghtomar","download_url":"https://codeload.github.com/manishsinghtomar/Card-Slider_in_react/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manishsinghtomar%2FCard-Slider_in_react/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31929711,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T10:35:34.458Z","status":"ssl_error","status_checked_at":"2026-04-17T10:35:09.472Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["react-slick","react-slick-carousel","reactjs","tailwindcss"],"created_at":"2025-06-13T13:38:25.495Z","updated_at":"2026-04-17T12:33:12.894Z","avatar_url":"https://github.com/manishsinghtomar.png","language":"JavaScript","readme":"\n\n# React Slick\nReact slick is a carousel component built with React. It is a react port of slick carousel.\n\n\n```ls\nnpm install react-slick --save\n```\n\n# Include CSS\nYou can include css required for this library in 2 ways\n\nInstall the slick-carousel package and import css in to your slider component\n\n### npm\n\n```ls\nnpm install slick-carousel --save\n```\n```css\nimport \"slick-carousel/slick/slick.css\";\nimport \"slick-carousel/slick/slick-theme.css\";\n```\n\nor you can add cdn link in your html\n\n```css\n\u003clink\n  rel=\"stylesheet\"\n  type=\"text/css\"\n  charset=\"UTF-8\"\n  href=\"https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick.min.css\"\n/\u003e\n\u003clink\n  rel=\"stylesheet\"\n  type=\"text/css\"\n  href=\"https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick-theme.min.css\"\n/\u003e\n```\n```jsx\nimport React from \"react\";\nimport Slider from \"react-slick\";\n\nexport default function SimpleSlider() {\n  var settings = {\n    dots: true,\n    infinite: true,\n    speed: 500,\n    slidesToShow: 1,\n    slidesToScroll: 1,\n  };\n  return (\n    \u003cSlider {...settings}\u003e\n      \u003cdiv\u003e\n        \u003ch3\u003e1\u003c/h3\u003e\n      \u003c/div\u003e\n      \u003cdiv\u003e\n        \u003ch3\u003e2\u003c/h3\u003e\n      \u003c/div\u003e\n      \u003cdiv\u003e\n        \u003ch3\u003e3\u003c/h3\u003e\n      \u003c/div\u003e\n      \u003cdiv\u003e\n        \u003ch3\u003e4\u003c/h3\u003e\n      \u003c/div\u003e\n      \u003cdiv\u003e\n        \u003ch3\u003e5\u003c/h3\u003e\n      \u003c/div\u003e\n      \u003cdiv\u003e\n        \u003ch3\u003e6\u003c/h3\u003e\n      \u003c/div\u003e\n    \u003c/Slider\u003e\n  );\n}\n```\n\n## Step 1 - wrapping up cards code inside`\u003cSlider {...settings}\u003e` component.\n\n## Step 2 - import react-slick libraries.\n\n```jsx\nimport Slider from \"react-slick\";\nimport \"slick-carousel/slick/slick.css\";\nimport \"slick-carousel/slick/slick-theme.css\";\n```\n\n```jsx\n const settings = {\n    dots: true,\n    infinite: true,\n    speed: 500,\n    slidesToShow: 3,//how many slide you want show initially.\n    slidesToScroll: 1//on clicking on arrow button how many slide will scroll at a time\n  };\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanishsinghtomar%2Fcard-slider_in_react","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanishsinghtomar%2Fcard-slider_in_react","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanishsinghtomar%2Fcard-slider_in_react/lists"}