learnix / src /app /components /sliderData.js
shashidharak99's picture
Upload files
7d51e81 verified
// /components/SliderData.js
const sliderData = [
{
title: "Dashboard",
description: "Comprehensive analytics and insights at your fingertips",
images: [
"https://res.cloudinary.com/dsojdpkgh/image/upload/v1758819911/dashboard-opening_l1reqs.jpg",
"https://res.cloudinary.com/dsojdpkgh/image/upload/v1758819907/dashboard_s0ftxp.jpg"
],
route: "/dashboard",
},
{
title: "Search",
description: "Find exactly what you're looking for instantly",
images: [
"https://res.cloudinary.com/dsojdpkgh/image/upload/v1758819912/search_pher6e.jpg"
],
route: "/search",
},
{
title: "Works",
description: "Showcase your projects with dynamic presentations",
images: [
"https://res.cloudinary.com/dsojdpkgh/image/upload/v1758819929/works-first_vovplj.jpg",
"https://res.cloudinary.com/dsojdpkgh/image/upload/v1758819926/works-lazyloading_jo3pbn.jpg",
"https://res.cloudinary.com/dsojdpkgh/image/upload/v1758819926/works-skeleton_tm3zkl.jpg"
],
route: "/works",
},
{
title: "Upload",
description: "Seamlessly upload and manage your files",
images: [
"https://res.cloudinary.com/dsojdpkgh/image/upload/v1758819924/upload-sub-delete_cbl5e7.jpg",
"https://res.cloudinary.com/dsojdpkgh/image/upload/v1758819923/upload-topic-add_j3qhbc.jpg"
],
route: "/upload",
},
{
title: "Materials",
description: "Access comprehensive learning resources and materials",
images: [
"https://res.cloudinary.com/dsojdpkgh/image/upload/v1758819904/materials-page_dwovnn.jpg",
"https://res.cloudinary.com/dsojdpkgh/image/upload/v1758819910/materials-1stsem_ihufol.jpg"
],
route: "/materials",
},
{
title: "Feedback",
description: "Share your thoughts and help us improve",
images: [
"https://res.cloudinary.com/dsojdpkgh/image/upload/v1758819907/feedback-send_hztwgv.jpg"
],
route: "/feedback",
},
{
title: "Profile",
description: "Manage your personal settings and preferences",
images: [
"https://res.cloudinary.com/dsojdpkgh/image/upload/v1758819925/profile-skeleton_gsfu0l.jpg",
"https://res.cloudinary.com/dsojdpkgh/image/upload/v1758819909/profile-ss_kf3eze.jpg"
],
route: "/profile",
},
];
export default sliderData;