-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (91 loc) · 3.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style.css" />
<title>AmpereUI | Home</title>
</head>
<body>
<div id="header">
<div id="logo">
<img src="./src/assets/ampereLogo.svg" alt="" />
</div>
<div id="nav-links">
<a class="link nav-link" href="./src/pages/docs.html">Docs</a>
<a
class="link nav-link"
href="https://github.com/FarhanMobashir/ampereui"
><i class="icon uil uil-github-alt"></i
></a>
</div>
</div>
<div id="main">
<div class="hero-section">
<h1 class="hero-heading">
Build your dream product blazing fast with AmpereUI
</h1>
<h4 class="hero-subheading">
With AmpereUI you can build your dream product faster with our premade
common components and it also comes with a bunch of helper class to
help you layouting and much more
</h4>
<div class="hero-button-container">
<a
class="btn btn-tertiary"
href="https://github.com/FarhanMobashir/ampereui"
>
Github <i class="uil uil-github-alt"></i>
</a>
<a class="btn btn-primary" href="./src/pages/docs.html">
Get Started <i class="uil uil-arrow-right"></i>
</a>
</div>
</div>
<div class="feature-section">
<div class="feature">
<div class="feature-content">
<h3 class="feature-heading">
A lot of colors for your every use case
</h3>
<p class="feature-description">
We provide a wide variety of colors for your every use case. We
offer you classes both for font-color as well as background color.
</p>
<a
href="./src/pages/docs.html#color"
class="btn btn-md btn-tertiary mv-10"
>
Learn more <i class="uil uil-arrow-right"></i>
</a>
</div>
<img src="./src/assets/color-grid.png" alt="" class="feature-img" />
</div>
<div class="feature row-flip">
<img src="./src/assets/typography.png" alt="" class="feature-img" />
<div class="feature-content">
<h3 class="feature-heading">
Text utiltilies to speed up you development
</h3>
<p class="feature-description">
AmpereUI comes with all the common text utitlites that is needed
while developing a top notch website. Just add the respective
classes and you are ready to rock.
</p>
<a
href="./src/pages/docs.html#typography"
class="btn btn-md btn-tertiary mv-10"
>
Learn more <i class="uil uil-arrow-right"></i>
</a>
</div>
</div>
</div>
</div>
<footer id="footer">
<h5 class="footer-text">Made with Love | Mobashir Farhan ©️ 2022</h5>
</footer>
<script type="module" src="/main.js"></script>
</body>
</html>