-
-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathofferings.ts
More file actions
35 lines (33 loc) · 886 Bytes
/
offerings.ts
File metadata and controls
35 lines (33 loc) · 886 Bytes
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
import { BookOpen, FolderOpen, Code2, Map, MessageCircle, Zap } from "lucide-react";
export const offerings = [
{
icon: BookOpen,
title: "Interactive Courses",
description: "Comprehensive programming courses for all skill levels.",
},
{
icon: FolderOpen,
title: "Real-world Projects",
description: "Hands-on projects mirroring industry standards.",
},
{
icon: Code2,
title: "Code Tutorials",
description: "Step-by-step tutorials on modern technologies.",
},
{
icon: Map,
title: "Learning Roadmaps",
description: "Structured paths to guide your growth.",
},
{
icon: MessageCircle,
title: "Vibrant Community",
description: "Collaborate with peers, mentors, and professionals.",
},
{
icon: Zap,
title: "Quick References",
description: "Cheat sheets for instant access to essentials.",
},
];