-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
27 lines (26 loc) · 1.08 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>Genezio HTML Starter Template</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Welcome to Genezio</h1>
</header>
<main>
<h2>Getting Started</h2>
<p>This is a basic template to help you get started with your Genezio project. Modify the content as needed to fit your requirements.</p>
<div class="next-steps">
<h2>Next Steps</h2>
<ul>
<li><a target="_blank" href="https://genezio.com/docs/features/custom-domain-configuration/">Add Custom Domain</a></li>
<li><a target="_blank" href="https://genezio.com/docs/features/deployments/#frontend-deployments">Learn more about Frontend Deployment</a></li>
<li><a target="_blank" href="https://genezio.com/docs/features/deployments/#backend-deployments">Learn more about Backend Deployment</a></li>
</ul>
</div>
</main>
</body>
</html>