-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathabout.html
More file actions
69 lines (57 loc) · 2.77 KB
/
about.html
File metadata and controls
69 lines (57 loc) · 2.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AxionAOSP - About Us</title>
<!-- Cloudflare DNS Prefetch -->
<link rel="dns-prefetch" href="https://raw.githubusercontent.com">
<link rel="dns-prefetch" href="https://api.github.com">
<link rel="dns-prefetch" href="https://github.com">
<!-- Preconnect for critical resources -->
<link rel="preconnect" href="https://raw.githubusercontent.com" crossorigin>
<link rel="preconnect" href="https://api.github.com" crossorigin>
<link rel="preconnect" href="https://github.com" crossorigin>
<!-- Preload critical CSS -->
<link rel="preload" href="css/main.css" as="style">
<link rel="preload" href="css/about.css" as="style">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/about.css" />
</head>
<body>
<div class="header-section">
<h1>The idea behind the <span class="highlight">Axion.</span></h1>
</div>
<div class="goal-section">
<p>
<i class="highlight">AxionOS</i> is made to deliver a clean, smooth, and reliable Android experience.
It is a <i class="highlight">minimalist ROM</i>, not a feature-focused one.
We prefer to do fewer things and do them well.
Every change has a clear purpose.
</p>
<p>
AxionOS exists to challenge the idea that custom ROMs are just a copy of one another.
This project is also a personal research effort by <i class="highlight">rmp22</i> to learn more about Android system development.
We avoid taking aka cherry-picking major features from other ROMs to challenge ourselves,
and to respect the creativity and hard work of the projects that originally made them.
Instead, we study how OEMs like Motorola, Pixel, Samsung, and others build their software.
We <i class="highlight">reverse-engineer</i> how features behave and re-implement them using our own code.
No OEM source code is copied or reused to avoid copyright, and everything is designed to fit cleanly into
<i class="highlight">AOSP</i>.
</p>
<p>
AxionOS is minimalist by default, but flexible by design.
Some parts of the system, such as the <i class="highlight">theme engine</i>, are built in a modular way
for users who enjoy customization.
At the same time, users who prefer simplicity can use AxionOS as-is, without extra clutter.
Our focus is on balance, polish, and long-term stability.
</p>
</div>
<div class="section" id="team-header">
<h1>Meet the <span class="highlight">Team.</span></h1>
</div>
<div class="team-section" id="team"></div>
</body>
<script src="js/about.js"></script>
</html>