-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
114 lines (114 loc) · 2.7 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
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
<!DOCTYPE html>
<html lang="sl_SI">
<head>
<link
rel="preload"
href="/fonts/montserrat-regular-webfont.woff2"
as="font"
crossorigin="anonymous"
>
<link
rel="preload"
href="/fonts/montserrat-medium-webfont.woff2"
as="font"
crossorigin="anonymous"
>
<link
rel="preload"
href="/fonts/montserrat-semibold-webfont.woff2"
as="font"
crossorigin="anonymous"
>
<meta charset="utf-8">
<meta
http-equiv="X-UA-Compatible"
content="IE=edge"
>
<meta
name="viewport"
content="width=device-width,initial-scale=1.0"
>
<meta
name="monetization"
content="$ilp.uphold.com/44LefdKYfgnr"
>
<title>
Digital communications app
</title>
<meta
name="description"
content="Digital communications app is an open source tool designed to help electrical engineering and computer science students better understand and visualize the complex concepts of digital signal modulations and transformations."
>
<meta
name="twitter:card"
content="summary"
>
<meta
name="twitter:title"
content="Digital communications app"
>
<meta
name="twitter:description"
content="Digital communications app is an open source tool designed to help electrical engineering and computer science students better understand and visualize the complex concepts of digital signal modulations and transformations."
>
<meta
name="twitter:image"
content="Digital communications app"
>
<meta
property="og:type"
content="website"
>
<meta
property="og:title"
content="Digital communications app"
>
<meta
property="og:url"
content="https://digital-communications-demo.netlify.app"
>
<meta
property="og:description"
content="Digital communications app is an open source tool designed to help electrical engineering and computer science students better understand and visualize the complex concepts of digital signal modulations and transformations."
>
<meta
property="og:image"
content="https://digital-communications-demo.netlify.app/images/logo.png"
>
<meta
property="og:image:secure_url"
content="https://digital-communications-demo.netlify.app/images/logo.png"
>
<meta
property="og:image:type"
content="image/png"
>
<meta
property="og:image:width"
content="1130"
>
<meta
property="og:image:height"
content="416"
>
<meta
property="og:image:alt"
content="LaIT"
>
<meta
property="og:locale"
content="sl_SI"
>
<link
rel="icon"
href="/images/favicon.png"
>
</head>
<body class="bg-white dark:bg-gray-800 transition-colors duration-300">
<div id="app"/>
<script
type="module"
src="/src/app.ts"
></script>
</body>
</html>