-
Notifications
You must be signed in to change notification settings - Fork 0
/
litestore.php
121 lines (87 loc) · 3.87 KB
/
litestore.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lite Store</title>
<link rel="stylesheet" href="style.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-BVDZ6019PE"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-BVDZ6019PE');
</script>
</head>
<body>
<header>
<nav>
<ul class="desk-menu">
<li>
<a style="background-color: #000000; border-radius: 10px; color: #b4ffeb;" href="index.php#works">works</a>
</li>
<li>
<a href="about">about</a>
</li>
<li>
<a class="contact" href="PaulJoly-resume.pdf" target="_blank">résumé</a>
</li>
</ul>
</nav>
<div style="display:flex;" class="margintop container25">
<div>
<h1>
Lite Store
</h1>
</div>
<div style="margin:auto; margin-right:0; ">
<a style="padding:0;" href="index#works">
<svg xmlns="http://www.w3.org/2000/svg" width="19.757" height="19.758" viewBox="0 0 19.757 19.758">
<g transform="translate(-1017.136 -324.136)">
<line x2="21.941" transform="translate(1019.257 341.772) rotate(-45)" fill="none" stroke="#fff" stroke-linecap="round" stroke-width="3" />
<line y2="21.941" transform="translate(1019.257 326.257) rotate(-45)" fill="none" stroke="#fff" stroke-linecap="round" stroke-width="3" />
</g>
</a>
</div>
</div>
<div>
<img style="margin-top:2em; " src="https://jolypaul.com/res/litestore/1.jpg" alt="">
</div>
<div style="padding-bottom:2em;" class="container25">
<div class="infogrid">
<div>
<h4 style="margin-bottom: 5px;">DATE</h4>
<p style="color:white;font-size: 18px; font-weight: 600;">2022 May-July</p>
</div>
<div>
<h4 style="margin-bottom: 5px;">ROLE</h4>
<p style="color:white;font-size: 18px; font-weight: 600;">Product Designer, Developer</p>
</div>
<div>
<h4 style="margin-bottom: 5px;">SKILLS</h4>
<p style="color:white;font-size: 18px; font-weight: 600;">UI/UX Design, Ideation, PHP, CSS, JS </p>
</div>
<div>
<h4 style="margin-bottom: 5px;">TOOLS</h4>
<p style="color:white;font-size: 18px; font-weight: 600;">Figma, Visual Studio Code</p>
</div>
</div>
</div>
</header>
<div style="margin-top:3em;" class="container25">
<h2>Link</h2>
<nav>
<a href="https://www.litestore-app.com" target="_blank" style="margin-top: 1em; background-color: black; display:block; width: 13em; border-radius: 10px; text-align:center;" href="#top">Litestore-app.com</a>
</nav>
<h2 style="margin-top:2em;">Description</h2>
<p style=" margin-top:1em;">On LiteStore you can search for web apps and find out what features are available on them.
Also, you can see how much storage and CO2 emission you will save by installing the web app instead of downloading the native app from the AppStore/PlayStore.</p>
</div>
<div style="margin-top: 5em;">
<?php include("footer.php"); ?>
</div>
</body>
</html>