blob: 899a0e68258926c1fbff917808f6432846c34301 (
plain) (
blame)
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
|
---
import { Image } from 'astro:assets';
import logo from "../assets/logo.png";
import Layout from '../layouts/Layout.astro';
import NoJSWarning from '../components/NoJSWarning.astro';
import ToggleShifter from '../components/ToggleShifter.tsx';
import Slideshow from '../components/Slideshow.tsx';
---
<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} />
<NoJSWarning />
<div class="window-container">
<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="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 class="window-container">
<Slideshow client:load image={"test"} alt={"test"} />
</div> -->
<ToggleShifter client:only />
</div>
<footer>
<p><b>© Copyright 2013-2026 ShiftOS Archive. Game originally made by Philip Adams.<br/>Website made by <a href="https://alee14.me">Andrew Lee</a>. <a href="https://github.com/Alee14/shiftos-website">Website source code.</a></b></p>
</footer>
</Layout>
|