-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgetting-started.html
More file actions
122 lines (107 loc) · 5.94 KB
/
Copy pathgetting-started.html
File metadata and controls
122 lines (107 loc) · 5.94 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="favicon.svg" type="image/svg+xml">
<title>Jumpjet - Getting Started</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
orange: '#FF4500',
charcoal: '#1A1A1A',
'charcoal-2': '#262626',
offwhite: '#F2F2EF',
},
fontFamily: {
mono: ['"Hurme FIN Mono 1b"', 'ui-monospace', 'monospace'],
wide: ['"Hurme FIN 1b Extended"', 'sans-serif']
},
fontWeight: { wide: 700 }
}
}
}
</script>
<style type="text/css">
@font-face {
font-family: 'Hurme FIN 1b Extended';
font-style: normal;
font-weight: normal;
font-display: swap;
src: url('HurmeFIN1b-ExtendedBlack.woff2') format('woff2'),
url('HurmeFIN1b-ExtendedBlack.woff') format('woff');
}
@font-face {
font-family: 'Hurme FIN Mono 1b';
font-style: normal;
font-weight: normal;
font-display: swap;
src: url('HurmeFINMono1b-Medium.woff2') format('woff2'),
url('HurmeFINMono1b-Medium.woff') format('woff');
}
html { scroll-behavior: smooth; }
body { background-color: #F2F2EF; }
.btn-press { transition: transform .12s ease, box-shadow .12s ease; box-shadow: 0 1px 0 rgba(0,0,0,.25); }
.btn-press:hover { transform: translateY(-1px); }
.btn-press:active { transform: translateY(1px); box-shadow: none; }
</style>
</head>
<body class="text-charcoal font-mono antialiased">
<!-- HERO -->
<section class="bg-orange text-white">
<div class="w-[90%] mx-auto pt-20 sm:pt-28 pb-16 sm:pb-24">
<a href="index.html" class="inline-block font-wide uppercase text-white/90 text-lg leading-none hover:text-white transition-colors">Jumpjet</a>
<h1 class="mt-12 font-wide uppercase text-white text-3xl sm:text-5xl leading-none">Getting Started</h1>
<p class="mt-8 text-sm sm:text-base text-charcoal lowercase">get started with jumpjet in less than 60 seconds.</p>
</div>
</section>
<!-- STEPS -->
<section class="relative -mt-8 sm:-mt-10 rounded-t-[24px] bg-offwhite">
<div class="w-[90%] mx-auto pt-20 sm:pt-28 pb-24 sm:pb-32">
<div class="grid grid-cols-1 lg:grid-cols-3 gap-5">
<!-- 01 -->
<article class="rounded-md border border-charcoal/70 p-7 flex flex-col">
<p class="text-[10px] uppercase text-orange">Step 01</p>
<h3 class="mt-4 font-wide uppercase text-charcoal text-xl sm:text-2xl leading-none">Install</h3>
<p class="mt-5 mb-6 text-[0.7rem] text-charcoal/75 leading-relaxed flex-1">Run the installer to get the latest build of the Jumpjet CLI.</p>
<div class="bg-charcoal text-white rounded-lg px-4 py-3 text-[0.7rem] sm:text-xs overflow-x-auto whitespace-nowrap select-all">
<span class="text-orange select-none">$ </span>curl -fsSL https://jumpjet.dev/install.sh | bash
</div>
</article>
<!-- 02 -->
<article class="rounded-md border border-charcoal/70 p-7 flex flex-col">
<p class="text-[10px] uppercase text-orange">Step 02</p>
<h3 class="mt-4 font-wide uppercase text-charcoal text-xl sm:text-2xl leading-none">Create project</h3>
<p class="mt-5 mb-6 text-[0.7rem] text-charcoal/75 leading-relaxed flex-1">Use the Jumpjet CLI to create a new project. Choose from the list of available templates.</p>
<div class="bg-charcoal text-white rounded-lg px-4 py-3 text-[0.7rem] sm:text-xs overflow-x-auto whitespace-nowrap select-all">
<span class="text-orange select-none">$ </span>jumpjet new game --template hello-rust
</div>
</article>
<!-- 03 -->
<article class="rounded-md border border-charcoal/70 p-7 flex flex-col">
<p class="text-[10px] uppercase text-orange">Step 03</p>
<h3 class="mt-4 font-wide uppercase text-charcoal text-xl sm:text-2xl leading-none">Run your game</h3>
<p class="mt-5 mb-6 text-[0.7rem] text-charcoal/75 leading-relaxed flex-1">Your Jumpjet project is ready for action. Try <code class="text-charcoal font-bold">jumpjet docs</code> to see the entire runtime API.</p>
<div class="bg-charcoal text-white rounded-lg px-4 py-3 text-[0.7rem] sm:text-xs overflow-x-auto whitespace-nowrap select-all">
<span class="text-orange select-none">$ </span>jumpjet run
</div>
</article>
</div>
</div>
</section>
<!-- FOOTER -->
<footer class="bg-offwhite border-t border-charcoal/15">
<div class="w-[90%] mx-auto py-8 flex flex-col sm:flex-row gap-3 sm:items-center justify-between">
<span class="font-wide uppercase text-charcoal text-lg">Jumpjet</span>
<div class="flex flex-col sm:flex-row gap-1 sm:gap-6 text-xs uppercase text-charcoal/50">
<a href="https://github.com/jumpjet-runtime/jumpjet" class="hover:text-orange transition-colors">GitHub</a>
<span>2026 © Jumpjet.dev</span>
<span>by <a href="https://x.com/lwansbrough" class="text-charcoal/70 hover:text-orange transition-colors">@lwansbrough</a></span>
</div>
</div>
</footer>
</body>
</html>