-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add NyaOS. * Add word. * Add MORE words. * Reword. * Reword. * Add system requirements. * Add system requirements. * Fix system requirements. * Rename section.
- Loading branch information
1 parent
884f150
commit 6d1fa9f
Showing
3 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
import Head from '../layouts/Head.astro'; | ||
import Scripts from '../layouts/Scripts.astro'; | ||
import HeroPynx from '../components/secondary/HeroPynx.astro'; | ||
import Navbar from '../components/Navbar.astro'; | ||
import Footer from '../components/Footer.astro'; | ||
import BackToTop from '../components/BackToTop.astro'; | ||
--- | ||
|
||
<Head title="NyaOS" heroid="ehs" description="NyaOS; a Hobby OS." keywords="Inferno, NyaOS, BxPP, AT Products LLC" author="Alex Toucan & Pynx" /> | ||
<div id="page"> | ||
<Navbar /> | ||
<div id="main-content"> | ||
<HeroPynx | ||
title="NyaOS" | ||
description="Made by Pynx; a little hobby OS with potential." | ||
buttons={[ | ||
{ href: "#downloads", text: "Downloads", type: "primary" }, | ||
]}, | ||
dropdownItems={[ | ||
{ navigationDesc: "General Information", navigationLink: "#general-info" }, | ||
{ navigationDesc: "Downloads", navigationLink: "#downloads" }, | ||
]}, | ||
/> | ||
<main id="bxpp" class="container"> | ||
<div id="general-info"> | ||
<h2> General Information </h2> | ||
<p><strong>NyaOS is still in the testing phase, be warned of bugs and glitches. If you find any, please contact us at our <a href="/contact">Contact Form</a>.</strong> NyaOS is a 32-bit hobby OS, purely made for fun, as the bootloader is made with <a href="https://osdev.org/">OSDev</a>. Test this OS in a virtual machine!</p> | ||
<span><strong>The minimum requirements for your system is:</strong></span> | ||
<ul> | ||
<li><strong>CPU:</strong> At least 1 core.</li> | ||
<li><strong>RAM:</strong> 16mb.</li> | ||
<li><strong>Storage:</strong> None, since it's all run on the ISO.</li> | ||
</ul> | ||
</div> | ||
<hr> | ||
<div id="downloads"> | ||
<h2>Downloads</h2> | ||
<div class="d-grid d-md-flex flex-wrap gap-2 py-2"> | ||
<a class="btn btn-primary btn-lg" href="/media/files/NyaOS.iso">ISO Download</a> | ||
</div> | ||
</div> | ||
</main> | ||
<Footer author="Alex Toucan & Pynx" /> | ||
</div> | ||
<BackToTop /> | ||
</div> | ||
<Scripts /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters