From 3f6c180e7bee816cc5410b2c6bd01e22a6e35910 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sat, 11 Jun 2022 16:07:16 -0400 Subject: Website is coming along :eyes: --- pages/index.js | 10 ++- public/Alee.svg | 219 +++++++++++++++++++++++++++++++++++++++++++++++++++++ tailwind.config.js | 6 +- 3 files changed, 230 insertions(+), 5 deletions(-) create mode 100755 public/Alee.svg diff --git a/pages/index.js b/pages/index.js index 26b99a7..f8a4e36 100644 --- a/pages/index.js +++ b/pages/index.js @@ -1,6 +1,7 @@ import Head from 'next/head' import styles from '../styles/Home.module.css' import Computer from '../components/computer' +import Image from "next/image"; export default function Home() { return ( @@ -11,10 +12,11 @@ export default function Home() { -
-

Andrew Lee

-

Linux User, Programmer, Computer Nerd

-

Contact me at andrew@alee14.me

+
+ Alee Logo +

Andrew Lee

+

Linux User, Programmer, Computer Nerd

+

Contact me at andrew@alee14.me

) diff --git a/public/Alee.svg b/public/Alee.svg new file mode 100755 index 0000000..da38ea6 --- /dev/null +++ b/public/Alee.svg @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/tailwind.config.js b/tailwind.config.js index 662cef7..4ffcc10 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -9,7 +9,11 @@ module.exports = { fontFamily: { 'hack': ['Hack', 'sans-serif'] }, - extend: {}, + extend: { + colors: { + 'material-gray': '#212121', + }, + }, }, plugins: [], } -- cgit v1.2.3