-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
147 lines (135 loc) · 5.32 KB
/
index.html
File metadata and controls
147 lines (135 loc) · 5.32 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="manifest" href="/Coding-For-MBA/manifest.json" />
<meta name="author" content="Coding for MBA" />
<meta name="robots" content="index, follow" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=swap"
/>
<meta
http-equiv="Content-Security-Policy"
content="upgrade-insecure-requests; default-src 'self'; script-src 'self' 'unsafe-eval' https://cdn.jsdelivr.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https://saint2706.github.io; font-src 'self' data: https://fonts.gstatic.com; connect-src 'self' https://cdn.jsdelivr.net https://pypi.org https://files.pythonhosted.org; worker-src 'self' blob:; object-src 'none'; base-uri 'self'; form-action 'self'; frame-src 'none'; child-src 'none';"
/>
<meta
name="description"
content="A structured 140-day curriculum covering Python, Data Science, Machine Learning, Business Intelligence, and Enterprise SQL — designed for MBA professionals."
/>
<meta name="theme-color" content="#4361ee" />
<!-- Minimal critical CSS for first paint of the home route -->
<style>
:root {
color-scheme: light dark;
}
body {
margin: 0;
font-family:
Inter,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
sans-serif;
background: #0a0a1a;
color: #e2e2f0;
}
#root {
min-height: 100vh;
}
.page-container {
width: min(1200px, 100% - 2rem);
margin: 0 auto;
padding: 1rem 0 2rem;
}
.hero {
border-radius: 1rem;
padding: 1.5rem;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, rgba(67, 97, 238, 0.08), rgba(63, 55, 201, 0.08));
}
.hero h1 {
margin: 0;
font-size: clamp(1.8rem, 3.8vw, 3rem);
line-height: 1.15;
}
.hero p {
margin: 0.9rem 0 0;
max-width: 65ch;
}
</style>
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Coding for MBA — 140-Day Technical Curriculum" />
<meta
property="og:description"
content="Master Python, Data Science, ML, BI, and SQL with a structured 140-day curriculum designed for business professionals."
/>
<meta property="og:image" content="https://saint2706.github.io/Coding-For-MBA/og-image.png" />
<meta property="og:url" content="https://saint2706.github.io/Coding-For-MBA/" />
<meta property="og:site_name" content="Coding for MBA" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Coding for MBA — 140-Day Technical Curriculum" />
<meta
name="twitter:description"
content="Master Python, Data Science, ML, BI, and SQL with a structured 140-day curriculum designed for business professionals."
/>
<meta name="twitter:image" content="https://saint2706.github.io/Coding-For-MBA/og-image.png" />
<title>Coding for MBA — 140-Day Technical Curriculum</title>
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Coding for MBA",
"url": "https://saint2706.github.io/Coding-For-MBA/",
"description": "A structured 140-day curriculum covering Python, Data Science, Machine Learning, Business Intelligence, and Enterprise SQL — designed for MBA professionals.",
"potentialAction": {
"@type": "SearchAction",
"target": {
"@type": "EntryPoint",
"urlTemplate": "https://saint2706.github.io/Coding-For-MBA/#/search?q={search_term_string}"
},
"query-input": "required name=search_term_string"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Course",
"name": "Coding for MBA — 140-Day Technical Curriculum",
"description": "Master Python, Data Science, ML, BI, and SQL with a structured 140-day curriculum designed for business professionals.",
"url": "https://saint2706.github.io/Coding-For-MBA/",
"provider": {
"@type": "Organization",
"name": "Coding for MBA"
},
"educationalLevel": "Professional",
"teaches": [
"Python Programming",
"Data Science",
"Machine Learning",
"Business Intelligence",
"SQL",
"Data Engineering"
],
"timeRequired": "P140D",
"hasCourseInstance": {
"@type": "CourseInstance",
"courseMode": "Online",
"courseWorkload": "PT140H"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>