-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (60 loc) · 2.49 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 -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Title -->
<title>Pinia | The intuitive store for Vue.js</title>
<!-- Fav Icon -->
<link rel="icon" href="./image/favicon/favicon.svg">
<!-- Style -->
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<header>
<div class="header">
<div>
<span class="pinia-title center">Pinia</span>
<p class="p-text center">The intuitive store for Vue.js</p>
<p class="p-text-second center">Type Safe, Extensible, and Modular by design. <br> Forget you are even using a store.</p>
<div class="btns">
<button class="get-btn">Get Stared</button>
<!-- -->
<button class="demo-btn">Demo</button>
<!-- -->
<button class="master-btn">
<div>
<img src="https://masteringpinia.com/images/homepage/hero.svg" width="20px" alt="Logo BTN">
<span>MasteringPinia</span>
</div>
</button>
</div>
<!-- -->
<div class="btns-secund">
<a href="#">
<button class="btn-p-1 btn-pack">
<img src="./image/header/play-button.svg" width="25px" alt="Watch icon">
<span>Watch Video Introduction</span>
</button>
</a>
<!-- -->
<a href="#">
<button class="btn-p-2 btn-pack">
<img src="./image/header/vue.png" width="30px" alt="vue ico">
<span>Get the Pinia Cheat Sheet</span>
</button>
</a>
</div>
</div>
<!-- -->
<div class="logo-container">
<div class="image-bg"></div>
<img class="logo" src="./image/header/logo.svg" width="214px" height="320px" alt="Pinia Logo">
</div>
</div>
</header>
</div>
</body>
</html>