aboutsummaryrefslogtreecommitdiff
path: root/src/pages/index.astro
blob: b016f7b43e7bbd1e5ce35606c1df38e06cad5133 (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
---
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="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>
    <footer>
        <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>