diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2022-10-14 21:57:17 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2022-10-14 21:57:17 -0400 |
| commit | aa381c56292f36967fbe37f8bd25a912b06a1cbe (patch) | |
| tree | 74bb58e2165658266047db969f8b23e99dea37d8 /pages | |
| parent | 58aac0ab59c032fb3b7f1fab2a2a20108a46f3fa (diff) | |
| download | personal-website-aa381c56292f36967fbe37f8bd25a912b06a1cbe.tar.gz personal-website-aa381c56292f36967fbe37f8bd25a912b06a1cbe.tar.bz2 personal-website-aa381c56292f36967fbe37f8bd25a912b06a1cbe.zip | |
Added favicons
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/index.js | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/pages/index.js b/pages/index.js index 3afe685..69fb9be 100644 --- a/pages/index.js +++ b/pages/index.js @@ -1,38 +1,36 @@ -import Header from '../components/header' +import Meta from '../components/meta' 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' const iconSize = "3x" -const iconProperties = "hover:text-gray-500 transition-all" +const iconProperties = "hover:text-gray-500 transition-all ease-in-out" +const navButton = "bg-gray-600 sm:py-4 sm:px-10 py-2 px-5 rounded-lg hover:bg-gray-400 transition ease-in-out" export default function Home() { return ( <> - <meta name="description" content="Andrew's personal website" /> - <meta name="viewport" content="width=device-width, initial-scale=1"/> - <link rel="icon" href="/favicon.ico" /> - <title>Home - Andrew Lee</title> + <Meta title="Home" description="Andrew's Personal Website" /> <div className="text-center font-hack font-bold flex flex-col gap-4 items-center justify-center h-screen w-screen bg-material-gray text-white drop-shadow-lg"> <Image src="/Alee.svg" alt="Alee Logo" width={210} height={210} /> <h1 className="text-4xl drop-shadow-lg">Andrew Lee</h1> - <h2 className="text-xl drop-shadow-lg">Computer Geek, Programmer, Content Creator</h2> + <h2 className="sm:text-xl text-lg drop-shadow-lg">Computer Geek, Programmer, Content Creator</h2> <div className="flex-row space-x-12"> <a href="https://github.com/Alee14"><FontAwesomeIcon icon={faGithub} size={iconSize} className={iconProperties} /></a> <a href="https://discord.gg/EFhRDqG"><FontAwesomeIcon icon={faDiscord} size={iconSize} className={iconProperties} /></a> <a href="https://www.youtube.com/c/AndrewLeeCAN"><FontAwesomeIcon icon={faYoutube} size={iconSize} className={iconProperties} /></a> <a href="https://twitter.com/Alee14498"><FontAwesomeIcon icon={faTwitter} size={iconSize} className={iconProperties} /></a> - <a href="https://reddit.com/Alee1449"><FontAwesomeIcon icon={faReddit} size={iconSize} className={iconProperties} /></a> <a href="https://instagram.com/alee14498"><FontAwesomeIcon icon={faInstagram} size={iconSize} className={iconProperties} /></a> + <a href="https://reddit.com/Alee1449"><FontAwesomeIcon icon={faReddit} size={iconSize} className={iconProperties} /></a> </div> - {/*<div className="flex-row font-normal space-x-12"> - <Link href="#"><a>About Me</a></Link> - <Link href="#"><a>Projects</a></Link> - <Link href="#"><a>Blog</a></Link> - <Link href="#"><a>Downloads</a></Link> - <Link href="#"><a>Guidelines</a></Link> - </div>*/} + {/*<div className="flex-row font-normal space-x-3"> + <Link href="#"><button className={navButton}>About Me</button></Link> + <Link href="#"><button className={navButton}>Projects</button></Link> + <Link href="#"><button className={navButton}>Blog</button></Link> + <Link href="#"><button className={navButton}>Downloads</button></Link> + <Link href="/guidelines"><button className={navButton}>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> </div> </> |
