From af07dc62f4a796d3d250533a88d26b2e5cdefc31 Mon Sep 17 00:00:00 2001 From: Alexis Werefox Date: Sun, 18 Apr 2021 19:30:19 +0000 Subject: [PATCH] Updated theme, added custom font and identities block. --- .gitignore | 3 +- src/info/pages/index.js | 129 ++++++++++++++++++++++++++++++++++-- src/info/styles/globals.css | 7 +- src/info/tailwind.config.js | 16 ++++- 4 files changed, 146 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index dbe9c82..ef0858b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -.vscode/ \ No newline at end of file +.vscode/ +src/info/public/ \ No newline at end of file diff --git a/src/info/pages/index.js b/src/info/pages/index.js index 31cfa99..9fa18cd 100644 --- a/src/info/pages/index.js +++ b/src/info/pages/index.js @@ -1,16 +1,137 @@ import Head from "next/head"; import Link from "next/link"; +import Image from "next/image"; export default function Home() { return ( -
+
About A Werefox -

- I'm Gay -

+
+
+

+ + {" "} + Pixel Alexis!{" "} + + -Hi! I'm Alexis Werefox! +

+
+
+
+
+

+ 26 +

+
+
+

+ Single +

+
+
+

+ + {" "} + Polyamory flag{" "} + + Polyam +

+
+
+

+ + {" "} + Female symbol{" "} + + + {" "} + Transgender flag{" "} + {" "} + Trans-femme +

+
+
+

+ + {" "} + Pansexual flag{" "} + {" "} + Pansexual +

+
+
+

+ + {" "} + Lesbian flag{" "} + {" "} + Lesbian +

+
+
+

+ ADHD +

+
+
+
+
+

+ Somewhere between a hot date and a hot mess. Just a witchy foxxo + programmer trying to make it in the world tbh. +

+
+
+ +
+
); } diff --git a/src/info/styles/globals.css b/src/info/styles/globals.css index bd6213e..c1bbb22 100644 --- a/src/info/styles/globals.css +++ b/src/info/styles/globals.css @@ -1,3 +1,8 @@ @tailwind base; @tailwind components; -@tailwind utilities; \ No newline at end of file +@tailwind utilities; + +@font-face { + font-family: "DejaVuSansMono"; + src: url("/fonts/DejaVuSansMono-Nerd-Font-Complete-Mono.ttf"); +} diff --git a/src/info/tailwind.config.js b/src/info/tailwind.config.js index 9888146..7c6115f 100644 --- a/src/info/tailwind.config.js +++ b/src/info/tailwind.config.js @@ -1,12 +1,22 @@ module.exports = { purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"], - darkMode: 'media', // or 'media' or 'class' + darkMode: "media", // or 'media' or 'class' theme: { extend: { + fontFamily: { + nerd: ["DejaVuSansMono"], + }, colors: { - "werefox-blue": "#60A4FF", - "werefox-pink": "#FF62B6", + "werefox-blue": { + DEFAULT: "#60A4FF", + dark: "#2885ff", + }, + "werefox-pink": { + DEFAULT: "#ff84c5", + dark: "#ff329f", + }, "werefox-grey": { + lighter: "#EEE", light: "#DBDBDB", DEFAULT: "#424242", dark: "#242424",