-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
110 lines (110 loc) · 3.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="assets/stylesheets/pages.css" />
<title>Trikone</title>
</head>
<body>
<header class="trikone__header">
<div class="container">
<a href="./index.html">
<div class="trikone__logo">
<img src="assets/images/icons/pine-cone.svg" alt="logo" />
<h3>triKone</h3>
</div>
</a>
<nav class="trikone__header__nav">
<ul class="trikone__header__nav__ul">
<li class="trikone__header__nav-items">
<a href="pages/neumorphism.html">UI Trends</a>
</li>
</ul>
</nav>
</div>
</header>
<main class="trikone__main">
<section class="trikone__main__hero">
<div class="container">
<h1 class="trikone__main__hero__punchline">
Rapid <span>Design</span> that <span>stuns!</span>
</h1>
<p class="punchline__text">
Quickly turning out an MVP can make your app look dated.
</p>
<p class="punchline__text">
Fuel up on snazzy styles that don't slow you down.
</p>
<div>
<a class="trikone__main__hero__button" href="pages/neumorphism.html"
>Feed me Components!</a
>
</div>
<!-- <img src="./assets/images/hero.svg" alt="" /> -->
</div>
</section>
<section class="trikone__main__benefits">
<div class="container grid">
<div class="trikone__main__benefits__card">
<h3>Super Stylish</h3>
<p>Feel the power of the latest UI/UX trend on your projects.</p>
</div>
<div class="trikone__main__benefits__card">
<h3>Accessible</h3>
<p>
TriKone components are designed for humans and all of them.
Accessibility is a goal that we are in the process of achieving.
</p>
</div>
<div class="trikone__main__benefits__card">
<h3>Responsive</h3>
<p>
All TriKone components are mobile responsive and are battle tested
for performing on all browsers.
</p>
</div>
</div>
</section>
<section class="trikone__main__focus">
<div class="container">
<h2 class="trikone__main__focus__punchline">
Build Beautiful. <span>Fast.</span>
</h2>
<p class="punchline__text">
No need to spend time learning design fine points.
</p>
<p class="punchline__text">
Leave that for your next round of funding.
</p>
<div>
<a
class="trikone__main__focus__button"
href="pages/neumorphism.html"
>Take Our Design!</a
>
</div>
</div>
</section>
</main>
<footer class="trikone__footer">
<nav class="trikone__footer__nav">
<ul class="trikone__footer__nav-items">
<li class="trikone__footer__nav-item">
<a target="_blank" href="https://github.com/bharat-patodi/trikone"
>Credits
</a>
</li>
<li class="trikone__footer__nav-item">
<a target="_blank" href="https://github.com/bharat-patodi/trikone">
<img src="assets/images/icons/github.svg" alt="Github" />
</a>
</li>
</ul>
</nav>
<p class="trikone__footer__copyright">
<small> © trikone 2020. All rights reserved.</small>
</p>
</footer>
</body>
</html>