aboutsummaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
authorAndrew Lee <[email protected]>2025-12-15 23:54:24 -0500
committerAndrew Lee <[email protected]>2025-12-16 00:52:15 -0500
commit00a841d83aeb4fa657d9dbfee58ac9b36eee3382 (patch)
treeb6a7ca2ac215f9ae52ff71a3656973b5776ce9d1 /src/pages
parent66e7218f9c2e0d875a5b06dc31f66a4329cbc032 (diff)
downloadshiftos-archive-website-00a841d83aeb4fa657d9dbfee58ac9b36eee3382.tar.gz
shiftos-archive-website-00a841d83aeb4fa657d9dbfee58ac9b36eee3382.tar.bz2
shiftos-archive-website-00a841d83aeb4fa657d9dbfee58ac9b36eee3382.zip
Converted slideshow to react, more shifter progress
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/index.astro28
1 files changed, 6 insertions, 22 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 7889cbf..b352cd0 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -2,31 +2,15 @@
import { Image } from 'astro:assets';
import logo from "../assets/logo.png";
import Layout from '../layouts/Layout.astro';
+import NoJSWarning from '../components/NoJSWarning.astro';
import Shifter from '../components/Shifter.tsx';
-import Slideshow from '../components/Slideshow.astro';
+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} />
- <noscript>
- <div class="window-container">
- <div class="window">
- <div class="titlebar">
- <p class="titlebar-text">Warning</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">
- <h1>You have disabled JavaScript.</h1>
- <p>Certain features may not work.</p>
- </div>
- </div>
- </div>
- </noscript>
+ <NoJSWarning />
<div class="window-container">
<div class="window">
<div class="titlebar">
@@ -47,9 +31,9 @@ import Slideshow from '../components/Slideshow.astro';
</div>
</div>
</div>
- <div class="window-container">
- <Slideshow />
- </div>
+ <!-- <div class="window-container">
+ <Slideshow client:load />
+ </div> -->
<Shifter client:only />
</div>
<footer>