-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·112 lines (98 loc) · 4.44 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
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="media/favicon.ico" type="image/x-icon">
<meta property="og:title" content="Akira AI">
<meta property="og:description" content="AI Powered Terminal-Based Code Editor">
<meta property="og:image" content="https://i.imgur.com/LdbW0bX.png">
<meta property="og:url" content="https://Akira-AI.vercel.app">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/lenis.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="media-queries.css">
<script src="https://unpkg.com/[email protected]/dist/lenis.min.js"></script>
<title>Akira</title>
</head>
<body>
<div id="main">
<!-- NAVBAR -->
<nav>
<a class="logo codedText hidden" href="#">// Akira</a>
<div class="nav-links hidden" id="nav-links">
<a href="#features-section" class="codedText">Features</a>
<a href="" class="codedText">Documentation</a>
<a href="#download" class="codedText">Download</a>
</div>
<i class="fa-solid fa-bars menu" id="hamburger"></i>
</nav>
<!-- HEADER -->
<div class="header">
<div class="header-img">
<img src="media/warp.gif" alt="">
</div>
<div class="header-content">
<h1 class="codedOnLoad hidden">AKIRA</h1>
<h2 class="hidden">AI Powered Terminal-Based Code Editor</h2>
<a href="#download" class="codedText hidden">Download Now</a>
</div>
<a href="#features-section" id="scroll-down"></a>
</div>
<!-- FEATURES -->
<div id="features-section">
<div class="features">
<h1 id="feat-heading" class="codedText hidden">AKIRA IS JUST BETTER!</h1>
<div class="feature-boxes">
<div class="features-box-left">
<div class="feature-text hidden">
<h1>Neovim Ain't Shit</h1>
<p>Akira mogs nvim and all terminal-based code editors</p>
</div>
<div class="feature-text hidden">
<h1>Built For Gen-Z By Gen-Z</h1>
<p>Imagine using VS Code in 2024 lmao</p>
</div>
<div class="feature-text hidden">
<h1>AI That Doesn't Suck</h1>
<p>It understands developers and never hallucinates</p>
</div>
</div>
<!-- <img src="media/akira-2.png" class="features-box-right" alt=""> -->
<img src="media/akira-1.jpg" class="features-box-right" alt="">
</div>
</div>
<video id="bg-video" src="media/linux-rice.mp4" autoplay muted loop></video>
</div>
<!-- PAGE END -->
<div id="end">
<div class="end-content">
<h1 id="end-heading" class="hidden codedText">DOWNLOAD NOW!</h1>
<div class="downloads">
<a id="download" href="#">
<i class="fa-brands fa-windows"></i>
<h2 class="codedText">Windows</h2>
</a>
<a id="download" href="#">
<i class="fa-brands fa-apple"></i>
<h2 class="codedText">Mac</h2>
</a>
<a id="download" href="#">
<i class="fa-brands fa-linux"></i>
<h2 class="codedText">Linux</h2>
</a>
</div>
</div>
</div>
<footer>
<a class="logo codedText" href="#">© Akira 2024</a>
<div class="footer-links">
<a class="codedText" href="https://github.com/HeySkidee" target="_blank">GitHub</a>
<a class="codedText" href="https://twitter.com/HeySkidee" target="_blank">Twitter</a>
<a class="codedText" href="#" target="_blank">Discord</a>
</div>
</footer>
</div>
<script src="https://kit.fontawesome.com/4e012046d4.js" crossorigin="anonymous"></script>
<script src="index.js"></script>
</body>
</html>