-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (78 loc) · 3.44 KB
/
index.html
File metadata and controls
81 lines (78 loc) · 3.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scryft | High-Performance Block Engine</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" href="/assets/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/assets/favicon.svg" />
<link rel="shortcut icon" href="/assets/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="Scryft" />
<link rel="manifest" href="/assets/site.webmanifest" />
</head>
<body>
<div class="hiring-banner">
🚀 We're hiring developers! Check out our <a href="https://scratch.mit.edu/discuss/topic/880038/" target="_blank">hiring post</a> for more info.
</div>
<nav class="navbar">
<div class="nav-container">
<div class="nav-left">
<a href="/" class="logo-link">
<img src="assets/logo.png" alt="Scryft Logo" class="nav-logo">
</a>
<ul class="nav-links">
<li><a href="https://scryft.github.io/Scryft-gui/" class="active">Create</a></li>
<li><a href="#" class="disabled">About</a></li>
<li><a href="#" class="disabled">Docs</a></li>
</ul>
</div>
<div class="nav-right">
<div class="search-bar">
<input type="text" placeholder="Search projects...">
<button class="search-btn">🔍</button>
</div>
<button class="nav-btn join disabled">Join</button>
<button class="nav-btn login disabled">Sign In</button>
</div>
</div>
</nav>
<main class="content">
<section class="hero">
<div class="hero-card">
<div class="hero-text">
<h1>The Level-Up for Block Coding Pros</h1>
<p>Done everything you can in Scratch? Scryft gives you pro logic, faster speeds, and better tools for when you're ready to build bigger things.</p>
<div class="hero-actions">
<button class="btn-primary" onclick="window.location.href='https://scryft.github.io/Scryft-gui';">
Launch Editor
</button>
</div>
</div>
<div class="hero-image">
<div class="placeholder-graphic">
<div class="block yellow"></div>
<div class="block yellow-light"></div>
<div class="block yellow-dark"></div>
</div>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer-container">
<div class="footer-column">
<h3>About</h3>
<ul>
<li><a href="#">About Scryft</a></li>
</ul>
</div>
</div>
</footer>
<script type="module" src="main.js"></script>
</body>
</html>