aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
Diffstat (limited to 'pages')
-rw-r--r--pages/about.js17
-rw-r--r--pages/downloads/osft-software-archive.js2
-rw-r--r--pages/index.js8
3 files changed, 20 insertions, 7 deletions
diff --git a/pages/about.js b/pages/about.js
index d079b36..283cfb9 100644
--- a/pages/about.js
+++ b/pages/about.js
@@ -1,10 +1,23 @@
import Meta from '../components/meta'
+import Image from "next/image";
-export default function AboutMe() {
+export default function About() {
return (
<div>
<Meta title="About Me" description="About Andrew Lee"/>
- <div className="font-hack bg-material-gray text-white px-5 py-6 space-y-5 flex flex-col">
+ <div className="font-hack bg-material-gray text-white px-5 py-6 flex flex-row">
+ <div className="bg-gray-600 px-10 py-5">
+ <div className="font-bold">
+ <Image src="/Alee.png" alt="Alee Logo" width={128} height={128} />
+ <h1 className="text-center text-xl">Andrew Lee</h1>
+ <h2>Age: 18</h2>
+ <h2>Location: Montreal, Canada</h2>
+ <h2>Description</h2>
+ </div>
+ </div>
+ <div className="bg-green-500">
+ <h1>Test 1</h1>
+ </div>
</div>
</div>
)
diff --git a/pages/downloads/osft-software-archive.js b/pages/downloads/osft-software-archive.js
index aef8ba7..73cc056 100644
--- a/pages/downloads/osft-software-archive.js
+++ b/pages/downloads/osft-software-archive.js
@@ -84,7 +84,7 @@ export default function OsftSoftwareArchive() {
<p>SHA256: c7ad3f799f14e610f8931f87e2612385ec39e2662308e7005e10715f9e94c6a0</p>
</div>
<div className="flex-col space-x-5">
- <button className="button"><a href="/uploads/OSFT-Software-Archive.zip">Download Archive</a></button>
+ <button className="button"><a href="https://cloud.alee14.me/s/GjwJeNb8JBCbaHw">Download Archive</a></button>
</div>
<div className="text-center pb-2">
<Link href="/"><button className="button">Return Homepage</button></Link>
diff --git a/pages/index.js b/pages/index.js
index 8cd30db..6fe6564 100644
--- a/pages/index.js
+++ b/pages/index.js
@@ -18,12 +18,12 @@ export default function Home() {
<div className="announcement"><p>You are using the development version of this site! Certain features are hidden from the public...</p></div>
)}
<div className="text-center flex flex-col gap-4 justify-center items-center h-screen w-screen">
- <Image src="/Alee.svg" alt="Alee Logo" width={210} height={210} />
+ <Image src="/Alee.png" alt="Alee Logo" className="rounded-full" width={230} height={230} />
<h1 className="text-4xl font-bold">Andrew Lee</h1>
<h2 className="sm:text-xl text-lg font-bold">Computer Geek, Programmer, Content Creator</h2>
<div className="sm:scale-100 scale-75 flex-row space-x-12 p-2">
<a href="https://github.com/Alee14" target="_blank" rel="noopener noreferrer"><FontAwesomeIcon icon={faGithub} size={iconSize} className={iconProperties} /></a>
- {/*<a href="https://www.linkedin.com/in/andrew-lee-982b3b23a" target="_blank" rel="noopener noreferrer"><FontAwesomeIcon icon={faLinkedin} size={iconSize} className={iconProperties} /></a>*/}
+ <a href="https://www.linkedin.com/in/AndrewLeeCAN" target="_blank" rel="noopener noreferrer"><FontAwesomeIcon icon={faLinkedin} size={iconSize} className={iconProperties} /></a>
<a href="https://paypal.me/alee14498" target="_blank" rel="noopener noreferrer"><FontAwesomeIcon icon={faPaypal} size={iconSize} className={iconProperties} /></a>
<a href="https://discord.gg/EFhRDqG" target="_blank" rel="noopener noreferrer"><FontAwesomeIcon icon={faDiscord} size={iconSize} className={iconProperties} /></a>
<a href="https://www.youtube.com/@AndrewLeeCAN" target="_blank" rel="noopener noreferrer"><FontAwesomeIcon icon={faYoutube} size={iconSize} className={iconProperties} /></a>
@@ -45,8 +45,8 @@ export default function Home() {
<h2 className="text-lg font-normal drop-shadow-lg">Contact me at <a href="mailto:andrew@alee14.me">andrew@alee14.me</a> for anything.</h2>
</div>
<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>&copy; Copyright 2018-2023 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.vercel.com" className="link" target="_blank" rel="noopener noreferrer">Vercel</a>.</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>