-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
27 lines (26 loc) · 1.21 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GitHub Actions Workflow Generator | gawg</title>
<link rel="icon" href="/src/assets/favicon.ico" type="image/x-icon" />
<!-- SEO Meta Tags -->
<meta name="description" content="Generate GitHub Actions Workflows easily with GAWG.">
<meta name="keywords" content="GitHub, Actions, Workflow, Generator, CI/CD">
<meta name="author" content="Álvaro García Pizarro">
<!-- Add to Home Screen Meta Tags -->
<meta name="theme-color" content="#fcfcfc">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="GAWG">
<link rel="apple-touch-icon" href="/src/assets/gawg_icon.webp">
<link rel="apple-touch-startup-image" href="/src/assets/gawg_icon.webp">
<link rel="icon" sizes="192x192" href="/src/assets/gawg_icon.webp">
<link rel="icon" sizes="512x512" href="/src/assets/gawg_icon.webp">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>