PriyaMishra commited on
Commit
08b145e
·
verified ·
1 Parent(s): 06d97c2

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +152 -19
index.html CHANGED
@@ -1,19 +1,152 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Management of Change & Organizational Development</title>
7
+ <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/mermaid.min.js"></script>
8
+ <script>
9
+ mermaid.initialize({ startOnLoad: true, theme: 'forest' });
10
+ </script>
11
+ <style>
12
+ body {
13
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
14
+ margin: 0;
15
+ padding: 20px;
16
+ background-color: #f8f9fa;
17
+ color: #333;
18
+ }
19
+ .container {
20
+ max-width: 1200px;
21
+ margin: 0 auto;
22
+ background: white;
23
+ padding: 25px;
24
+ border-radius: 10px;
25
+ box-shadow: 0 4px 12px rgba(0,0,0,0.1);
26
+ }
27
+ h1 {
28
+ text-align: center;
29
+ color: #2c3e50;
30
+ margin-bottom: 30px;
31
+ padding-bottom: 15px;
32
+ border-bottom: 2px solid #eee;
33
+ }
34
+ .description {
35
+ text-align: center;
36
+ margin-bottom: 30px;
37
+ color: #555;
38
+ line-height: 1.6;
39
+ }
40
+ .flowchart {
41
+ overflow: auto;
42
+ }
43
+ .note {
44
+ margin-top: 20px;
45
+ padding: 15px;
46
+ background-color: #f8f9fa;
47
+ border-left: 4px solid #4CAF50;
48
+ font-size: 14px;
49
+ }
50
+ </style>
51
+ </head>
52
+ <body>
53
+ <div class="container">
54
+ <h1>Management of Change & Organizational Development</h1>
55
+ <p class="description">
56
+ This flowchart illustrates the comprehensive framework for managing organizational change,
57
+ sustainable development practices, and organizational development strategies with real-world case examples.
58
+ </p>
59
+
60
+ <div class="flowchart">
61
+ <div class="mermaid">
62
+ flowchart TD
63
+ %% Styling definitions
64
+ classDef mainNode fill:#2c3e50,color:white,stroke-width:0,font-weight:bold
65
+ classDef sectionNode fill:#3498db,color:white,stroke-width:0
66
+ classDef subNode fill:#e74c3c,color:white,stroke-width:0
67
+ classDef detailNode fill:#2ecc71,color:white,stroke-width:0
68
+ classDef caseNode fill:#9b59b6,color:white,stroke-width:0
69
+
70
+ %% Main Concepts in Management of Change
71
+ A["Management of Change &<br/>Organizational Development"]:::mainNode
72
+
73
+ %% Main sections
74
+ B["1. Fundamentals of<br/>Management of Change"]:::sectionNode
75
+ C["2. Sustainable<br/>Development"]:::sectionNode
76
+ D["3. Organizational<br/>Development"]:::sectionNode
77
+ E["Case Examples"]:::sectionNode
78
+
79
+ A --> B
80
+ A --> C
81
+ A --> D
82
+
83
+ %% Fundamentals of Management of Change
84
+ B1["1.1 Urgency for Change<br/>- Disruptive Technologies<br/>- Uncertain Job Market 2040"]:::subNode
85
+ B2["1.2 Transient Advantage<br/>- Not Fixed Competitive Advantage<br/>- Innovation Obstacles<br/>- Readiness Indicators"]:::subNode
86
+ B3["1.3 Innovation Types<br/>- Product<br/>- Process<br/>- Marketing<br/>- Business Model"]:::subNode
87
+ B4["1.4 Value Innovation<br/>- Blue Ocean Strategy<br/>- Customer Experience Focus"]:::subNode
88
+ B5["1.5 Generic Strategy<br/>- Cost Leadership<br/>- Differentiation<br/>- Niche"]:::subNode
89
+
90
+ B --> B1
91
+ B --> B2
92
+ B --> B3
93
+ B --> B4
94
+ B --> B5
95
+
96
+ %% Sustainable Development
97
+ C1["2.1 The Urgency<br/>- Ecological Divide<br/>- Socio-economic Divide<br/>- Inner/Cultural Divide"]:::subNode
98
+ C2["2.2 Misconceptions about<br/>Sustainable Business"]:::subNode
99
+ C3["2.3 Stages of Integration<br/>- Products & Services<br/>- Value Chain<br/>- Product Design<br/>- New Business Models"]:::subNode
100
+ C4["2.4 Leading from<br/>Emerging Future<br/>- Seeing<br/>- Presencing<br/>- Enacting"]:::subNode
101
+ C5["2.5 Challenging<br/>Basic Assumptions"]:::subNode
102
+ C6["2.6 Social Enterprise<br/>- Market & Government Failures<br/>- Examples in India"]:::subNode
103
+
104
+ C --> C1
105
+ C --> C2
106
+ C --> C3
107
+ C --> C4
108
+ C --> C5
109
+ C --> C6
110
+
111
+ %% Organizational Development
112
+ D1["3.1 Planned Change Process<br/>- Opportunity Deficit<br/>- Economic vs. Competency Approach"]:::subNode
113
+ D2["3.2 Lewin's Change Model<br/>- Unfreezing<br/>- Movement<br/>- Refreezing"]:::subNode
114
+ D3["3.3 Action Research Approach<br/>- Action & Research"]:::subNode
115
+
116
+ D --> D1
117
+ D --> D2
118
+ D --> D3
119
+
120
+ %% Case Examples
121
+ E1["Walmart"]:::caseNode
122
+ E2["Netflix"]:::caseNode
123
+ E3["Unilever"]:::caseNode
124
+ E4["Coca-Cola India"]:::caseNode
125
+ E5["Amul"]:::caseNode
126
+ E6["BizSoft"]:::caseNode
127
+
128
+ E --> E1
129
+ E --> E2
130
+ E --> E3
131
+ E --> E4
132
+ E --> E5
133
+ E --> E6
134
+
135
+ %% Connect Transient Advantage to Case Examples
136
+ B2 -.-> E
137
+
138
+ %% Add some additional connections for better visualization
139
+ C3 -.-> E3
140
+ B3 -.-> E2
141
+ B5 -.-> E1
142
+ C6 -.-> E5
143
+ </div>
144
+ </div>
145
+
146
+ <div class="note">
147
+ <p><strong>Note:</strong> This flowchart provides a comprehensive overview of Management of Change & Organizational Development concepts.
148
+ Hover over nodes to see full content. The dotted lines represent conceptual relationships between theories and case examples.</p>
149
+ </div>
150
+ </div>
151
+ </body>
152
+ </html>