From 5508880c4c3140f29651bcbbc568795ac1427b92 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 16 Oct 2022 21:35:52 -0400 Subject: Added more info in the footer --- package.json | 2 +- pages/index.js | 31 ++++++++++++++++--------------- styles/globals.css | 6 +++++- tailwind.config.js | 1 + 4 files changed, 23 insertions(+), 17 deletions(-) diff --git a/package.json b/package.json index e5ba324..24b9883 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "scripts": { "dev": "next dev", "build": "next build && next export", - "start": "next start", + "start": "next build && next start", "lint": "next lint" }, "dependencies": { diff --git a/pages/index.js b/pages/index.js index f3370e0..604f9bd 100644 --- a/pages/index.js +++ b/pages/index.js @@ -5,8 +5,7 @@ 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 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" +const iconProperties = "hover:text-gray-700 transition-all ease-in-out" const isDev = process.env.NODE_ENV === 'development' @@ -14,15 +13,15 @@ export default function Home() { return ( <> -
+
{isDev && ( -

You are using the development version of this site! Certain features are hidden from the public...

+

You are using the development version of this site! Certain features are hidden from the public...

)} -
+
Alee Logo -

Andrew Lee

-

Computer Geek, Programmer, Content Creator

-
+

Andrew Lee

+

Computer Geek, Programmer, Content Creator

+
@@ -31,19 +30,21 @@ export default function Home() {
{isDev && ( -
- - - - - +
+ + + + +
)}

Contact me at andrew@alee14.me

© Copyright 2018-2022 Andrew Lee

-

Created using NextJS, and Tailwind CSS. Hosted on Netlify.

+

Created using Next.js, and Tailwind CSS. Hosted on Netlify.

+

This website is licensed under the GNU General Public License v3

+

The source code of this website is publicly available.

diff --git a/styles/globals.css b/styles/globals.css index 62b5694..1a800d7 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -28,6 +28,10 @@ @layer components { .link { - @apply text-blue-600 hover:text-blue-300 + @apply text-blue-500 hover:text-blue-300 active:text-blue-100 + } + + .button { + @apply bg-btn-gray sm:py-4 sm:px-10 py-2 px-5 rounded-lg hover:bg-gray-700 transition ease-in-out hover:border-2 hover:border-white active:bg-gray-300 hover:scale-95 active:scale-75 shadow-lg } } diff --git a/tailwind.config.js b/tailwind.config.js index ea8fdce..70c4b45 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -12,6 +12,7 @@ module.exports = { extend: { colors: { 'material-gray': '#212121', + 'btn-gray': '#575757', } }, }, -- cgit v1.2.3