-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
32 lines (31 loc) · 1.15 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="./src/assets/logo_icon.svg"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Laurier Computing Society | LCS</title>
<meta property="og:title" content="Laurier Computing Society | LCS" />
<meta
property="og:site_name"
content="Laurier Computing Society | LCS"
/>
<meta
property="og:description"
content="The official student-run society of Wilfrid Laurier University's Computer Science department."
/>
<meta property="og:url" content="https://lauriercs.ca/" />
<meta property="og:image" content="https://lauriercs.ca/icon.png" />
<meta property="og:locale" content="en_CA" />
<meta property="og:locale:alternate" content="en_GB" />
<meta property="og:locale:alternate" content="en_US" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>