aboutsummaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/downloads.md1
-rw-r--r--src/pages/index.astro24
2 files changed, 19 insertions, 6 deletions
diff --git a/src/pages/downloads.md b/src/pages/downloads.md
index e24b919..f068700 100644
--- a/src/pages/downloads.md
+++ b/src/pages/downloads.md
@@ -4,7 +4,6 @@ description: Download ShiftOS here! This contains the ShiftOS source code and Sh
layout: ../layouts/Page.astro
---
-
# ShiftOS Downloads
[Return to homepage](/)
diff --git a/src/pages/index.astro b/src/pages/index.astro
index fbdd1c2..246c87f 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -2,16 +2,30 @@
import { Image } from 'astro:assets';
import logo from "../assets/logo.png";
import Layout from '../layouts/Layout.astro';
+import '../styles/window.css';
---
<Layout title="ShiftOS: The Archive" description="ShiftOS was a game developed by Philip Adams and other developers. The original goal was to go from a bare terminal to a graphical user interface with full desktop features.">
<div class="center">
<Image src={logo} alt="ShiftOS Logo" class="logo" width={logo.width} height={logo.height} />
- <div class="container">
- <h1>ShiftOS: The Archive</h1>
- <p>ShiftOS was a game developed by Philip Adams and other developers. The original goal was to go from a bare terminal to a graphical user interface with full desktop features.</p>
- <div class="nav">
- <a href="history">History</a> | <a href="downloads">Downloads</a> | <a href="https://www.youtube.com/c/ShiftOS">YouTube Channel</a>
+ <div class="window">
+ <div class="titlebar">
+ <p class="titlebar-text">ShiftOS: The Archive</p>
+ <div class="titlebar-buttons">
+ <div class="titlebar-box"></div>
+ <div class="titlebar-box"></div>
+ <div class="titlebar-box"></div>
+ </div>
+ </div>
+ <div class="border">
+ <div class="container">
+ <p>ShiftOS was a game developed by Philip Adams and other developers. The original goal was to go from a bare terminal to a graphical user interface with full desktop features.</p>
+ <div class="nav">
+ <a class="button" href="history">History</a>
+ <a class="button" href="downloads">Downloads</a>
+ <a class="button" href="https://www.youtube.com/c/ShiftOS">Videos</a>
+ </div>
+ </div>
</div>
</div>
</div>