-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
151 lines (142 loc) · 6.37 KB
/
Copy pathindex.html
File metadata and controls
151 lines (142 loc) · 6.37 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
148
149
150
151
<!doctype html>
<html lang="en">
<head>
<!-- Basic Meta Tags -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary SEO Meta Tags -->
<title>
Autism Simulator - Workplace Experience Simulation | Interactive
Educational Tool
</title>
<meta
name="title"
content="Autism Simulator - Workplace Experience Simulation | Interactive Educational Tool"
/>
<meta
name="description"
content="Experience the workplace through the lens of a high-masking autistic professional. An educational simulation exploring sensory overload, social navigation, and burnout in corporate environments."
/>
<meta
name="keywords"
content="autism, workplace simulation, educational game, autistic experience, corporate environment, sensory overload, neurodiversity, accessibility, interactive story"
/>
<meta name="author" content="Dr. Josh C. Simmons" />
<meta name="robots" content="index, follow" />
<meta name="language" content="English" />
<meta name="revisit-after" content="7 days" />
<meta name="rating" content="general" />
<meta name="distribution" content="global" />
<meta
name="category"
content="education, simulation, autism, workplace, accessibility"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://autism-simulator.com/" />
<meta
property="og:title"
content="Autism Simulator - Workplace Experience Simulation"
/>
<meta
property="og:description"
content="Experience the workplace through the lens of a high-masking autistic professional. An educational simulation exploring sensory overload, social navigation, and burnout in corporate environments."
/>
<meta property="og:image" content="/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:alt"
content="Autism Simulator - Interactive workplace experience"
/>
<meta property="og:site_name" content="Autism Simulator" />
<meta property="og:locale" content="en_US" />
<meta property="article:author" content="Dr. Josh C. Simmons" />
<meta property="article:section" content="Education" />
<meta
property="article:tag"
content="autism, workplace, simulation, education, neurodiversity"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://autism-simulator.com/" />
<meta
property="twitter:title"
content="Autism Simulator - Workplace Experience Simulation"
/>
<meta
property="twitter:description"
content="Experience the workplace through the lens of a high-masking autistic professional. An educational simulation exploring sensory overload, social navigation, and burnout."
/>
<meta property="twitter:image" content="/og-image.png" />
<meta
property="twitter:image:alt"
content="Autism Simulator - Interactive workplace experience"
/>
<!-- Favicon and Icons -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="shortcut icon" href="/favicon.ico" />
<!-- Theme and Mobile -->
<meta name="theme-color" content="#000000" />
<meta name="msapplication-TileColor" content="#000000" />
<meta name="msapplication-config" content="/browserconfig.xml" />
<!-- Canonical URL -->
<link rel="canonical" href="https://autism-simulator.com/" />
<!-- Performance Optimizations -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net" />
<meta name="format-detection" content="telephone=no" />
<!-- Security Headers -->
<meta http-equiv="X-Content-Type-Options" content="nosniff" />
<meta http-equiv="X-Frame-Options" content="DENY" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
<!-- Structured Data (JSON-LD) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Autism Simulator",
"alternateName": "Workplace Experience Simulation",
"description": "An interactive educational simulation that models the daily experience of high-masking autistic professionals in corporate environments, exploring themes of sensory overload, social navigation, and workplace burnout.",
"url": "https://autism-simulator.com/",
"applicationCategory": "EducationalApplication",
"operatingSystem": "Web Browser",
"browserRequirements": "Requires JavaScript",
"author": {
"@type": "Person",
"name": "Dr. Josh C. Simmons",
"url": "https://drjoshcsimmons.com/"
},
"educationalUse": "Understanding autism in workplace environments",
"learningResourceType": "Simulation",
"audience": {
"@type": "Audience",
"audienceType": "General Public"
},
"about": {
"@type": "Thing",
"name": "Autism Spectrum Disorder",
"sameAs": "https://en.wikipedia.org/wiki/Autism_spectrum"
},
"keywords": "autism, workplace simulation, educational game, autistic experience, corporate environment, sensory overload, neurodiversity, accessibility, interactive story",
"genre": "Educational Simulation",
"interactionType": "Mixed",
"isAccessibleForFree": true,
"datePublished": "2024-12-29",
"dateModified": "2024-12-29",
"inLanguage": "en-US",
"accessibilityControl": ["fullKeyboardControl", "fullMouseControl"],
"accessibilityFeature": ["alternativeText", "structuralNavigation"],
"accessibilityHazard": ["noFlashingHazard", "noMotionSimulationHazard"],
"accessibilitySummary": "Educational simulation accessible via keyboard and screen readers with no flashing content"
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>