-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (116 loc) · 5.19 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Information -->
<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="author" content="Chinmay Manas" />
<meta name="description"
content="Aesthetic UI, a UI component library for shipping code faster.
Aesthetic UI is a free, open source framework that provides ready-to-use frontend components that you can easily combine to build responsive web interfaces.">
<!-- Primary Meta Tags -->
<title>Aesthetic UI</title>
<meta name="title" content="Aesthetic UI">
<meta name="author" content="Chinmay Manas">
<meta name="description"
content="Aesthetic UI, a UI component library for shipping code faster.
Aesthetic UI is a free, open source framework that provides ready-to-use frontend components that you can easily combine to build responsive web interfaces.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://aesthetic-ui-dev.netlify.app/">
<meta property="og:title" content="Aesthetic UI">
<meta property="og:description"
content="Aesthetic UI, a UI component library for shipping code faster.
Aesthetic UI is a free, open source framework that provides ready-to-use frontend components that you can easily combine to build responsive web interfaces.">
<meta property="og:image"
content="https://raw.githubusercontent.com/pnchinmay/aesthetic-ui/development/assets/logo.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://aesthetic-ui-dev.netlify.app/">
<meta property="twitter:title" content="Aesthetic UI">
<meta property="twitter:description"
content="Aesthetic UI, a UI component library for shipping code faster.
Aesthetic UI is a free, open source framework that provides ready-to-use frontend components that you can easily combine to build responsive web interfaces.">
<meta property="twitter:image"
content="https://raw.githubusercontent.com/pnchinmay/aesthetic-ui/development/assets/logo.png">
<!-- Optional Meta Tags -->
<meta name="keywords"
content="CSS, CSS Framework, UI Component Library, Component Library, CSS Framework, UI, ui, components, website, development, library, web development, web">
<meta name="robots" content="index, follow">
<meta name="language" content="English">
<!-- External Imports -->
<link rel="icon" href="/assets/favicon.svg" />
<link rel="stylesheet" href="/styles/main.css" />
</head>
<body class="homepage-body">
<!-- Navbar -->
<nav class="navbar-top">
<div class="navbar-section">
<div>
<a href="/index.html">
<span class="brand">
<img src="/assets/logo.png" alt="Aesthetic UI Logo" class="brand-logo">
</span>
</a>
</div>
<ul class="nav-links">
<li class="list-item-inline">
<a href="/pages/introduction.html">Get Started</a>
</li>
<li class="list-item-inline">
<a href="/pages/alert.html">Documentation</a>
</li>
<li class="list-item-inline">
<a href="/pages/alert.html">Components</a>
</li>
</ul>
<ul class="nav-links">
<li class="list-item-inline">
<a href="https://github.com/pnchinmay/aesthetic-ui" target="_blank"
><i class="fab fa-github h3 list-item-inline"></i
></a>
</li>
</ul>
</div>
</nav>
<!-- Main content -->
<main>
<section class="grid-50-50-layout homepage-container-wrapper">
<div class="homepage-content mr-4">
<h3 class="mb-5">
<div class="homepage-text">Build your website <i class="text-primary-color">faster</i>
<br>with <i class="text-primary-color">Aesthetic UI</i>
</h3>
<div class="mb-4">Minimal, customizable, and user friendly</div>
<div>
<a href="/pages/introduction.html" class="link-no-style">
<button class="btn btn-outline-primary mb-2">
Get Started
</button>
</a>
<a href="https://github.com/pnchinmay/aesthetic-ui" target="_blank" class="link-no-style">
<button class="btn btn-solid-primary mb-2">
Github
</button>
</a>
</div>
</div>
<div class="hero-img m-5">
<img loading="lazy" src="/assets/hero.svg" class="img-responsive m-5" alt="infographic" />
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer-homepage text-center">
<div class="footer-header mb-1">
Made with <i class="fas fa-heart" aria-hidden="true"></i> by Chinmay Manas
</div>
<div class="footer-social-handles">
<a href="https://github.com/pnchinmay" aria-label="Github Profile" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://twitter.com/pnchinmay" aria-label="Twitter Profile" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/pnchinmay" aria-label="LinkedIn Profile" target="_blank"><i class="fab fa-linkedin-in"></i></a>
</div>
</footer>
</body>
</html>