aboutsummaryrefslogtreecommitdiff
path: root/pages/index.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-10-22 18:45:20 -0400
committerAndrew Lee <alee14498@protonmail.com>2022-10-22 18:45:20 -0400
commit05ca4038d78ff34e83ea9399dd6458609e2d4134 (patch)
tree36e51e72f5e2a3bf9739ca8be51c5053e7b8486a /pages/index.js
parentc470ff1c16ce18312199294ec5803df52a2dc8fd (diff)
downloadpersonal-website-05ca4038d78ff34e83ea9399dd6458609e2d4134.tar.gz
personal-website-05ca4038d78ff34e83ea9399dd6458609e2d4134.tar.bz2
personal-website-05ca4038d78ff34e83ea9399dd6458609e2d4134.zip
Guidelines update; Minor changes in the home page
Diffstat (limited to 'pages/index.js')
-rw-r--r--pages/index.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/pages/index.js b/pages/index.js
index 562f567..8c3edde 100644
--- a/pages/index.js
+++ b/pages/index.js
@@ -3,7 +3,7 @@ import Link from 'next/link'
import Computer from '../components/computer'
import Image from "next/image";
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
-import { faYoutube, faTwitter, faDiscord, faGithub, faReddit, faInstagram } from '@fortawesome/free-brands-svg-icons'
+import { faYoutube, faTwitter, faDiscord, faGithub, faReddit, faInstagram, faLinkedin } from '@fortawesome/free-brands-svg-icons'
const iconSize = "3x"
const iconProperties = "hover:text-gray-700 transition-all ease-in-out"
@@ -23,11 +23,12 @@ export default function Home() {
<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://discord.gg/EFhRDqG" target="_blank" rel="noopener noreferrer"><FontAwesomeIcon icon={faDiscord} size={iconSize} className={iconProperties} /></a>
<a href="https://www.youtube.com/c/AndrewLeeCAN" target="_blank" rel="noopener noreferrer"><FontAwesomeIcon icon={faYoutube} size={iconSize} className={iconProperties} /></a>
<a href="https://twitter.com/Alee14498" target="_blank" rel="noopener noreferrer"><FontAwesomeIcon icon={faTwitter} size={iconSize} className={iconProperties} /></a>
<a href="https://instagram.com/alee14498" target="_blank" rel="noopener noreferrer"><FontAwesomeIcon icon={faInstagram} size={iconSize} className={iconProperties} /></a>
- <a href="https://reddit.com/Alee1449" target="_blank" rel="noopener noreferrer"><FontAwesomeIcon icon={faReddit} size={iconSize} className={iconProperties} /></a>
+ <a href="https://reddit.com/u/Alee1449" target="_blank" rel="noopener noreferrer"><FontAwesomeIcon icon={faReddit} size={iconSize} className={iconProperties} /></a>
</div>
{isDev && (
<div className="flex-row font-normal space-x-3 p-2">
@@ -39,13 +40,13 @@ export default function Home() {
<Link href="/guidelines"><button className="button">Guidelines</button></Link>
</div>
)}
- <h2 className="text-lg font-normal drop-shadow-lg">Contact me at <a href="mailto:andrew@alee14.me">andrew@alee14.me</a></h2>
+ <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>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>
+ <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>
</div>