aboutsummaryrefslogtreecommitdiff
path: root/src/pages/index.astro
diff options
context:
space:
mode:
authorAndrew Lee <[email protected]>2025-01-02 11:08:59 -0500
committerAndrew Lee <[email protected]>2025-01-02 11:08:59 -0500
commitc39c29d218451f0d1ca3e37c001eab39e6f1eede (patch)
tree377769f55b843a501c0c58468e80cfbbb6c6e05f /src/pages/index.astro
parent7c27bf194e8854dcb55f95c48567779a0e8751f3 (diff)
downloadshiftos-archive-website-c39c29d218451f0d1ca3e37c001eab39e6f1eede.tar.gz
shiftos-archive-website-c39c29d218451f0d1ca3e37c001eab39e6f1eede.tar.bz2
shiftos-archive-website-c39c29d218451f0d1ca3e37c001eab39e6f1eede.zip
Optimized image; Added deprecation note on history; Fixed styling
Diffstat (limited to 'src/pages/index.astro')
-rw-r--r--src/pages/index.astro10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 1aafb88..fbdd1c2 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -1,17 +1,21 @@
---
+import { Image } from 'astro:assets';
+import logo from "../assets/logo.png";
import Layout from '../layouts/Layout.astro';
---
<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">
- <img src="/assets/images/ShiftOS 2017 Logo.png" alt="ShiftOS Logo" class="logo">
+ <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>
- <b><a href="history">History/Origins</a> | <a href="downloads">Downloads</a> | <a href="https://www.youtube.com/c/ShiftOS">YouTube Channel</a></b>
+ <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>
</div>
</div>
<footer>
- <p><b>&copy; Copyright 2013-2025 ShiftOS. Game originally made by Philip Adams.<br/>Website made by Andrew Lee. <a href="https://github.com/Alee14/shiftos-website">Website source code.</a></b></p>
+ <p><b>&copy; Copyright 2013-2025 ShiftOS Archive. Game originally made by Philip Adams.<br/>Website made by Andrew Lee. <a href="https://github.com/Alee14/shiftos-website">Website source code.</a></b></p>
</footer>
</Layout>