From b02b44130a58d01a2f5ced37c3b62ea7ffc88652 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Wed, 10 Feb 2021 18:33:42 -0500 Subject: Added my logo; Dark theme; Open Sans --- pages/index.js | 1 + public/Alee.svg | 218 +++++++++++++++++++++++++++++++++++++++++++++++++ public/vercel.svg | 4 - styles/Home.module.css | 2 +- styles/Page.module.css | 2 +- styles/globals.css | 6 +- 6 files changed, 225 insertions(+), 8 deletions(-) create mode 100755 public/Alee.svg delete mode 100644 public/vercel.svg diff --git a/pages/index.js b/pages/index.js index 0e13c27..fc07221 100644 --- a/pages/index.js +++ b/pages/index.js @@ -13,6 +13,7 @@ export default function Home() {

Welcome to Lawrence Hill website!

+

Made by Andrew Lee in Next.JS

diff --git a/public/Alee.svg b/public/Alee.svg new file mode 100755 index 0000000..a4ef9fb --- /dev/null +++ b/public/Alee.svg @@ -0,0 +1,218 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/vercel.svg b/public/vercel.svg deleted file mode 100644 index fbf0e25..0000000 --- a/public/vercel.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - \ No newline at end of file diff --git a/styles/Home.module.css b/styles/Home.module.css index a2c5476..afea393 100644 --- a/styles/Home.module.css +++ b/styles/Home.module.css @@ -19,7 +19,7 @@ .footer { width: 100%; height: 100px; - border-top: 1px solid #eaeaea; + border-top: 1px solid #3a3a3a; display: flex; justify-content: center; align-items: center; diff --git a/styles/Page.module.css b/styles/Page.module.css index 3763f3e..4d9e96b 100644 --- a/styles/Page.module.css +++ b/styles/Page.module.css @@ -15,7 +15,7 @@ .footer { width: 100%; height: 100px; - border-top: 1px solid #eaeaea; + border-top: 1px solid #3a3a3a; display: flex; justify-content: center; align-items: center; diff --git a/styles/globals.css b/styles/globals.css index e5e2dcc..c9f261e 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -1,9 +1,11 @@ +@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap'); html, body { padding: 0; margin: 0; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, - Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; + font-family: Open Sans; + background-color: #212121; + color: #FFFFFF; } a { -- cgit v1.2.3