-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
56 lines (52 loc) · 2.14 KB
/
data.js
File metadata and controls
56 lines (52 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
export const banners = [
{
image: "https://res.cloudinary.com/dmmrtqe8q/image/upload/v1713603882/kipytpig7tgbvhrxr9yy.png",
title: "Empower Your Future",
description: "Invest in Your Education for a Brighter Tomorrow. Acquire New Skills, Unlock New Opportunities, and Achieve Your Professional and Personal Goals. Coursify Is Your Partner in the Journey to a More Empowered and Successful Future.",
button_url: "/courses",
button_text: "Learn More"
},
{
image: "https://res.cloudinary.com/dmmrtqe8q/image/upload/v1713603663/ejtozf3atnbua4fppnup.png",
title: "Learn at Own Pace",
description: "Embrace a Learning Journey That Adapts to Your Schedule. With Flexible Learning, You Have the Freedom to Explore New Subjects and Acquire Skills at Your Own Pace. No Deadlines, No Pressure, Just Learning on Your Terms",
button_url: "/courses",
button_text: "View Courses"
},
{
image: "https://res.cloudinary.com/dmmrtqe8q/image/upload/v1713603859/hddnpufre9ehyqlnkmvt.png",
title: "Learn from Experts",
description: "Immerse Yourself in Learning from Distinguished Instructors Who Are Leading Experts in Their Fields. Dive Deep into Their Knowledge and Insights to Expand Your Skills and Gain Valuable Expertise",
button_url: "/courses",
button_text: "Start Learning"
},
{
image: "https://res.cloudinary.com/dmmrtqe8q/image/upload/v1713603837/clqmuwoc5zr8doqcs827.png",
title: "Join our Community",
description: "Connect with a Vibrant Community of Learners from Around the Globe. Share Your Ideas, Collaborate on Projects, and Grow Together. At Coursify, We Believe That Learning Is a Collective Journey.",
button_url: "/courses",
button_text: "Join Now"
},
]
export const headerLinks = [
{
name: "Home",
route: "/",
},
{
name: "Courses",
route: "/courses",
},
{
name: "Blogs",
route: "/blogs",
},
{
name: "About",
route: "/about",
},
{
name: "Contact",
route: "/contact",
},
]