-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
137 lines (116 loc) · 5.64 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NeoFreeBird</title>
<link rel="stylesheet" href="/src/styles.css">
<script src="/src/general.js" async></script>
<link href="favicon.png" rel="icon" id="site-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer">
</head>
<body>
<header id="desktop-header">
<div>
<ul>
<li class="active"><a href="/">NeoFreeBird</a></li>
<li><a href="/details">Details</a></li>
<li><a href="/docs">Docs</a></li>
</ul>
<ul>
<li><a href="https://github.com/actuallyaridan/NeoFreeBird"><i class="fa-brands fa-github" title="GitHub"></i></a></li>
<li><a href="https://twitter.com/actuallyaridan"><i class="fa-brands fa-twitter" title="Twitter"></i></a></li>
<a href="https://github.com/actuallyaridan/NeoFreeBird/releases/" class="get-button" target="_blank">Get</a>
</ul>
</div>
</header>
<header id="mobile-header">
<div>
<ul>
<li class="active"><a href="/">NeoFreeBird</a></li>
</ul>
<ul>
<li><button class="noUI" onclick="toggleMenu()"><i class="fa-solid fa-bars"></i></button></li>
</ul>
</div>
<menu class="mobileMenu" id="mobileMenuID">
<ul>
<li><a href="/details">Details</a></li>
<li><a href="/docs">Docs</a></li>
</ul>
<ul>
<li><a href="https://github.com/actuallyaridan/NeoFreeBird"><i class="fa-brands fa-github" title="GitHub"></i></a></li>
<li><a href="https://twitter.com/actuallyaridan"><i class="fa-brands fa-twitter" title="Twitter"></i></a></li>
<a href="https://github.com/actuallyaridan/NeoFreeBird/releases/" class="get-button" target="_blank">Get</a>
</menu>
</header>
<main class="container">
<!-- App Icon and Name -->
<div id="app-info">
<img src="/images/twitter.png"
alt="Chirp Icon" class="app-icon">
<div>
<h1 class="app-name">NeoFreeBird</h1>
<p class="app-description">A modified Twitter app, with branding reverts, BHTwitter and other QoL modifications.</p>
</div>
</div>
<div class="screenshot-container">
<img class="screenshot" src="/images/IMG_4803.png">
<img class="screenshot" src="/images/IMG_4804.png">
</div>
<hr>
<!-- TestFlight Button -->
<!-- Screenshots Section -->
<!-- Changelog Section -->
<div class="changelog">
</div>
<div class="feature">
<div>
<h2 class="feature-title">"So stylish<br>Baby X's all gone"</h2>
<p class="feature-content">NeoFreeBird reverts the new rebrand, so you can say hello to your favoutite bird again.</p>
</div>
<div class="screenshot-container">
<img class="Screenshot" src="/images/IMG_4810.png">
</div>
</div>
<div class="feature flipped">
<div>
<h2 class="feature-title">Ads? What's that?</h2>
<p class="feature-content">Customize Twitter using the included and improved version of BHTwitter in order to block ads, change the app icon, pick a theme and gain access to most Twitter Blue features — all for free</p>
</div>
<div class="screenshot-container">
<img class="Screenshot" src="/images/IMG_4809.png">
</div>
</div>
<div class="feature">
<div>
<h2 class="feature-title">NeoFreeBird speaks your language. Properly.</h2>
<p class="feature-content">All of Twitters localizations are included and somewhat improved, so it won't matter if you speak English, Swedish or Japanese, NeoFreeBird will speak your language!</p>
</div>
<div class="screenshot-container">
<img class="Screenshot" src="/images/IMG_4810.png">
</div>
</div>
<div class="feature flipped">
<div>
<h2 class="feature-title">Want to build it yourself? Go ahead!</h2>
<p class="feature-content">If you prefer to build your own version of NeoFreeBird with your own Twitter IPA, we have <a class="inline" href="/docs/index.html">guides</a> on how to do just that!</p>
</div>
<div class="screenshot-container">
<img class="Screenshot" src="/images/IMG_4809.png">
</div>
</div>
</main>
<section>
<div class="cta">
<div>
<h2>What are you waiting for?</h2>
<p>Get NeoFreeBird now!</p>
</div>
<a href="https://github.com/actuallyaridan/NeoFreeBird/releases/" class="get-button" target="_blank">Get NeoFreeBird from GitHub</a>
</div>
</section>
<footer>
<p>NeoFreeBird is a fork of nyathea's FreeBird and is developed by <a class="inline" href="https://twitter.com/actuallyaridan">Adnan Bukvic</a> and <a class="inline" href="https://twitter.com/timi2506">@timi2506</a> and is not made, promoted or sanctioned by Twitter/X.</p>
</footer>
</body>
</html>