-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
68 lines (63 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script
src="https://kit.fontawesome.com/617c60ee1d.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="/src/artsyUI.css" />
<link rel="stylesheet" href="/styles.css" />
<title>Artsy UI</title>
</head>
<body class="doc-body">
<!--******** header *******-->
<header class="cl-header">
<a class="flex-align-center" href="">
<img
alt="artsyui-logo"
class="artsy-logo"
src="/src/assets/logo-v2.png"
/>
<h3><b>Artsy UI</b></h3>
<span>v1.0</span>
</a>
<div class="right-side">
<a href="" class="link-text-primary">Home</a>
<a
href="/src/getting_started/introduction.html"
class="link-text-primary"
>Docs</a
>
<i class="fa-solid fa-moon mode-toggle"></i>
</div>
</header>
<main class="flex-align-center landing-page-main">
<div class="landing-page-logo">
<img alt="artsyui-logo" src="/src/assets/logo-v2.png" />
</div>
<div class="landing-page-content">
<h1>Welcome!!</h1>
<p class="body-l landing-page-para">
Arsty UI has a robust set of pre build components, styled to help you
quickly build amazing websites.With Artsy UI spend less time in
designing and concentrate more on logic without hustling on UI.
</p>
<div class="buttons-section">
<a href="/src/getting_started/introduction.html">
<button class="btn main-btn">
Get Started
<i class="fa-solid fa-arrow-right"></i>
</button>
</a>
<a href="https://github.com/bhtibrewal/artsy-ui">
<button class="btn sec-btn">Github</button>
</a>
</div>
</div>
</main>
<script src="/index.js"></script>
</body>
</html>