aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-10-27 13:57:56 -0400
committerAndrew Lee <alee14498@protonmail.com>2022-10-27 13:57:56 -0400
commitac689e5291f2185e0a2cd1044ebfc23b5c6a30ef (patch)
tree0c5fbc68df6310c21af951341a1432e9caebb722 /pages
parentd1e7094a2842496eb8f386e3ebdcf4a3866975f7 (diff)
downloadpersonal-website-ac689e5291f2185e0a2cd1044ebfc23b5c6a30ef.tar.gz
personal-website-ac689e5291f2185e0a2cd1044ebfc23b5c6a30ef.tar.bz2
personal-website-ac689e5291f2185e0a2cd1044ebfc23b5c6a30ef.zip
Updated OSFT page
Diffstat (limited to 'pages')
-rw-r--r--pages/_app.js4
-rw-r--r--pages/downloads/osft-software-archive.js11
-rw-r--r--pages/index.js2
3 files changed, 12 insertions, 5 deletions
diff --git a/pages/_app.js b/pages/_app.js
index 06d9c7c..2e0ad90 100644
--- a/pages/_app.js
+++ b/pages/_app.js
@@ -4,7 +4,7 @@ import { config } from '@fortawesome/fontawesome-svg-core'
import '@fortawesome/fontawesome-svg-core/styles.css'
config.autoAddCss = false
-function MyApp({ Component, pageProps }) {
+function Website({ Component, pageProps }) {
return (
<>
<Component {...pageProps} />
@@ -13,4 +13,4 @@ function MyApp({ Component, pageProps }) {
)
}
-export default MyApp
+export default Website
diff --git a/pages/downloads/osft-software-archive.js b/pages/downloads/osft-software-archive.js
index e1fdf86..8ebdc9a 100644
--- a/pages/downloads/osft-software-archive.js
+++ b/pages/downloads/osft-software-archive.js
@@ -15,7 +15,6 @@ export default function OsftSoftwareArchive() {
<Image src="/Alee.svg" alt="Alee Logo" width={128} height={128} />
<h1 className="text-4xl font-bold">Philip Adams Software Archive</h1>
<h2 className="text-xl font-bold">The ultimate software collection of Philip Adams&apos; software</h2>
- <p>These software require .NET Framework 3.5, 4.0 and/or 4.5 to function.</p>
</div>
<div className="bg-yellow-700 p-5 rounded-lg text-center">
<FontAwesomeIcon icon={faWarning} size="3x" className="pb-2" />
@@ -23,7 +22,15 @@ export default function OsftSoftwareArchive() {
<p>Some of the software in this pack contains a jumpscare. If you have epilepsy, please be cautious.</p>
<p>Disable your antivirus as it can detect false positive, feel free to use a VM in case this feels not safe.</p>
</div>
- <p>Pack will include the following:</p>
+ <p>Minimal Software Requirements</p>
+ <ul className="bg-gray-700 p-6 rounded-lg">
+ <li>OS: Windows XP to 11 (Depends on each program)</li>
+ <li>CPU: Intel Core 2 Duo</li>
+ <li>RAM: 512 MB to 1 GB</li>
+ <li>Storage: 500 MB</li>
+ <li>Frameworks: Adobe Flash Player, .NET Framework 3.5, 4.0 and/or 4.5</li>
+ </ul>
+ <p>Programs included in this pack</p>
<ul className="bg-gray-700 p-6 rounded-lg">
<li>Artpad (from ShiftOS)</li>
<li>Averager</li>
diff --git a/pages/index.js b/pages/index.js
index 9bc5699..c3f30ae 100644
--- a/pages/index.js
+++ b/pages/index.js
@@ -45,7 +45,7 @@ export default function Home() {
<div className="text-center justify-center font-bold pb-5 flex flex-col space-y-3">
<p>&copy; Copyright 2018-2022 Andrew Lee</p>
<p>Created using <a href="https://nextjs.org" className="link" target="_blank" rel="noopener noreferrer">Next.js</a>, and <a href="https://tailwindcss.com" className="link" target="_blank" rel="noopener noreferrer">Tailwind CSS</a>. Hosted on <a href="https://www.netlify.com" className="link" target="_blank" rel="noopener noreferrer">Netlify</a>.</p>
- <p>Using <a href="https://fontawesome.com">FontAwesome</a> as the main icon style for this site.</p>
+ <p>Using <a href="https://fontawesome.com" className="link">FontAwesome</a> as the main icon style for this site.</p>
<p>This website is licensed under the <a href="https://www.gnu.org/licenses/gpl-3.0.en.html" className="link" target="_blank" rel="noopener noreferrer">GNU General Public License v3</a></p>
<p className="link"><a href="https://github.com/Alee14/personal-website" target="_blank" rel="noopener noreferrer">The source code of this website is publicly available</a></p>
</div>