-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (40 loc) · 2.27 KB
/
index.html
File metadata and controls
44 lines (40 loc) · 2.27 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
<!doctype html>
<html lang="en">
<head>
<!-- Primary Meta Tags -->
<title>DevLab@Clemson</title>
<meta name="description" content="DevLab @ Clemson is a research lab focused on inclusive and human-centered software engineering, developer experience, AI-assisted development, and supporting novice and neurodiverse programmers." />
<meta name="keywords" content="software engineering research, human-centered software engineering, inclusive computing, developer experience, AI-assisted software development, novice programmers, neurodiversity in tech, Clemson University research lab" />
<meta name="author" content="DevLab @ Clemson" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/png" href="/logo.png" />
<!-- Canonical URL -->
<link rel="canonical" href="https://clemsondevlab.com/" />
<!-- Open Graph (LinkedIn, Facebook, Slack, etc.) -->
<meta property="og:type" content="website" />
<meta property="og:title" content="DevLab @ Clemson | Inclusive & Human-Centered Software Engineering Research" />
<meta property="og:description" content="Researching inclusive, human-centered software engineering, AI-assisted development, and developer experience at Clemson University." />
<meta property="og:url" content="https://clemsondevlab.com/" />
<meta property="og:site_name" content="DevLab @ Clemson" />
<meta property="og:image" content="https://clemsondevlab.com/og-image.png" />
<!-- Twitter / X -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="DevLab @ Clemson | Inclusive Software Engineering Research" />
<meta name="twitter:description" content="Inclusive and human-centered software engineering research at Clemson University, with a focus on AI-assisted development and developer experience." />
<meta name="twitter:image" content="https://clemsondevlab.com/og-image.png" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script>
// Handle SPA redirect from 404.html
(function(){
var redirect = sessionStorage.redirect;
delete sessionStorage.redirect;
if (redirect && redirect !== location.href) {
history.replaceState(null, null, redirect);
}
})();
</script>
</body>
</html>