diff --git a/console/index.html b/console/index.html
new file mode 100644
index 0000000..239e5e5
--- /dev/null
+++ b/console/index.html
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..541fe90
--- /dev/null
+++ b/index.html
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/policy/index.html b/policy/index.html
new file mode 100644
index 0000000..531a56c
--- /dev/null
+++ b/policy/index.html
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pricing/index.html b/pricing/index.html
new file mode 100644
index 0000000..92646c2
--- /dev/null
+++ b/pricing/index.html
@@ -0,0 +1,144 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ type |
+ monthly |
+ cpus |
+ mem |
+ ssd |
+
+
+
+
+ us-east-xs |
+ $4.50 |
+ 1 |
+ 1G |
+ 32G |
+
+
+ us-east-s |
+ $6.75 |
+ 2 |
+ 2G |
+ 32G |
+
+
+ us-east-m |
+ $9.00 |
+ 4 |
+ 4G |
+ 32G |
+
+
+ us-east-l |
+ $13.50 |
+ 4 |
+ 6G |
+ 32G |
+
+
+ us-east-xl |
+ $18.00 |
+ 6 |
+ 8G |
+ 32G |
+
+
+
+
+
+
+ network bandwidth is shared, you will get 40mbps dedicated and up to
+ 250mbps when the network is not being heavily utilized.
+
+ - FreeBSD 14.2
- NetBSD 10.1
- Arch Linux
- Ubuntu
+ 22.04
- Rocky Linux 9
- Alpine Linux 3.21
-
+ Debian 12
+
+
+
+
+
+
+
+
+ type |
+ monthly |
+ size |
+
+
+
+
+ us-east-xs |
+ $5.00 |
+ 256G |
+
+
+
+ us-east-s |
+ $7.50 |
+ 512G |
+
+
+
+ us-east-m |
+ $12.50 |
+ 1000G |
+
+
+
+ us-east-l |
+ $20.00 |
+ 1500G |
+
+
+
+ us-east-xl |
+ $27.50 |
+ 2000G |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/styles.css b/styles.css
new file mode 100644
index 0000000..6ddab77
--- /dev/null
+++ b/styles.css
@@ -0,0 +1,220 @@
+/* General HTML & Body Styles */
+html {
+ font-size: 13px;
+ background-color: #241917;
+ color: #f3bbae;
+}
+
+body,
+html {
+ overflow-x: hidden;
+}
+
+body {
+ font-size: 1rem;
+ line-height: 1.5rem;
+ margin: 0;
+ font-family: Liberation Mono, Courier New, monospace, serif;
+ word-wrap: break-word;
+ margin: auto;
+ max-width: 600px;
+}
+
+/* Table Styles */
+table {
+ width: 100%;
+ border-collapse: collapse;
+ margin: px 0 0;
+ background-color: #342a27;
+ color: #f3bbae;
+ font-size: 0.95rem;
+}
+
+th,
+td {
+ padding: 5px 5px;
+ text-align: left;
+ border: 1px solid #9a756c;
+}
+
+th {
+ background-color: #9a756c;
+ color: #241917;
+}
+
+tr:nth-child(even) {
+ background-color: #3c2a26;
+}
+
+tr:hover {
+ background-color: #503b30;
+}
+
+/* Header Styles */
+h3 {
+ color: #f1c9c0;
+ margin: 0;
+}
+
+/* Paragraph Styles */
+p {
+ margin: 0;
+}
+
+/* Global Reset */
+* {
+ box-sizing: border-box;
+ text-rendering: geometricPrecision;
+}
+
+/* Links and Buttons */
+a {
+ cursor: pointer;
+ color: inherit !important;
+ text-decoration: none;
+}
+
+a[itemprop="url"]:hover {
+ color: #fff;
+}
+
+.button {
+ display: inline-block;
+ text-decoration: underline;
+}
+
+/* Navigation Links */
+.nav-links {
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+ font-size: 0.9rem;
+}
+
+.left {
+ gap: 0;
+ display: flex;
+ flex-direction: row;
+}
+
+/* Active and Inactive States */
+.active,
+.inactive {
+ padding: 0.85rem;
+ padding-bottom: 0.55rem;
+ display: inline-block;
+ font-size: inherit !important;
+}
+
+.active {
+ background-color: #f3bbae;
+ color: #241917 !important;
+}
+
+.inactive:hover {
+ background-color: #503b30;
+}
+
+/* Right Section Layout */
+.right {
+ display: flex;
+ flex-direction: row;
+ padding: 0.75rem;
+ gap: 1rem;
+}
+
+/* Feed Icon */
+.feed-icon::after {
+ content: none !important;
+}
+
+/* Social Icon */
+.social-icon {
+ padding: 0.1em;
+ height: 1.5em;
+ width: auto;
+ display: block;
+ margin-bottom: 0.25em;
+}
+
+/* Icon Styles */
+.icon {
+ margin-bottom: -3px;
+}
+
+/* User Actions Container */
+.user-actions-container {
+ position: relative;
+ flex-grow: 1;
+ max-width: 100%;
+ margin-left: 15px;
+ margin-right: 15px;
+ display: flex;
+ align-items: center;
+ gap: 15px;
+}
+
+/* Main */
+main {
+ animation: intro 0.3s both;
+ animation-delay: 0.15s;
+ margin-top: 3rem;
+}
+
+/* Footer */
+footer {
+ margin-top: 4rem;
+ font-size: 0.75rem;
+ color: #fff;
+}
+
+/* Section */
+section {
+ border-color: #9a756c;
+ border-style: solid;
+ border-width: 2px;
+ padding: 1rem;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ gap: 0.5rem;
+}
+
+
+section svg {
+ background-color: #9a756c;
+ fill: #241917;
+ height: 32px;
+ width: 32px;
+ border-radius: 5px;
+ padding: 0.45rem;
+ cursor: pointer;
+ transition-duration: 100ms;
+}
+section svg:hover {
+ background-color: #503b30;
+ fill: #241917;
+ transition-duration: 100ms;
+}
+
+.grid {
+ display: flex;
+ flex-direction: row;
+ gap: 1rem;
+ justify-content: center;
+ align-items: start;
+}
+
+.grid div {
+ width: 100%;
+}
+.grid div i {
+ font-size: 0.9rem;
+}
+
+/* Console */
+.console-buttons {
+ padding: 0.35rem;
+ width: fit-content;
+ border-radius: 10px;
+}
\ No newline at end of file