diff --git a/components/layout.tsx b/components/layout.tsx
index 2445dcf..82a0c1b 100644
--- a/components/layout.tsx
+++ b/components/layout.tsx
@@ -9,7 +9,7 @@ const Layout = ({children}: {children: ReactNode}) => {
wych.dev
-
+ {/**/}
{children}
>)
diff --git a/pages/index.tsx b/pages/index.tsx
index 803f11b..3dd3670 100755
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -1,7 +1,8 @@
-import type {NextPageWithLayout} from './_app'
-import type { ReactElement } from 'react'
-import Layout from '../components/layout'
-import styled from 'styled-components'
+import type {NextPageWithLayout} from "./_app"
+import type { ReactElement } from "react"
+import Layout from "../components/layout"
+import Nav from "../components/nav"
+import styled from "styled-components"
import Link from "next/link"
export const Section = styled.section`
@@ -9,7 +10,9 @@ export const Section = styled.section`
justify-content: center;
flex-direction: column;
padding: 0 1rem;
- margin: 2rem 0;
+ /*margin: 2rem 0;*/
+ margin: 0 0;
+ height: 100vh;
h2, h3 {
margin: 8px 0;
@@ -20,6 +23,10 @@ export const Section = styled.section`
color: var(--fg);
}
+ .topmargin {
+ margin-top: 2rem;
+ }
+
ul li {
margin: .5rem 2.5rem;
}
@@ -49,13 +56,11 @@ const Page: NextPageWithLayout = () => {
return (
<>
- About
- I am a Computer Science & Engineering student with a passion for programming , physics , mathematics and anything *NIX (Linux, UNIX etc) related.
+ $ whoami
+ > I am a Computer Science & Engineering student with a passion for programming , physics , mathematics and anything *NIX (Linux, UNIX etc) related.
{/*TODO: Add GitHub code frequency/contrib here*/}
-
-
-
- Most of my projects are open-source, and if you are interested, you can find all of my projects on my git-server or GitHub . You can also check out /projects to view all of my projects (including hardware projects and so on).
+ Most of my projects are open-source, and if you are interested, you can find all of my projects on my git-server or GitHub . You can also check out /projects to view all of my projects (including hardware projects and so on).
+
diff --git a/styles/globals.css b/styles/globals.css
index 6333dbe..f6fa4df 100755
--- a/styles/globals.css
+++ b/styles/globals.css
@@ -2,25 +2,25 @@
font-size: 16px;
--border-type: solid;
--border-size: 1px;
- --border-color: #373a44;
+ --border-color: var(--fg-faded);
--border-radius: 1rem;
--content-max-width: 60rem;
--h-uni-padding: .8rem;
--v-uni-padding: .2rem;
- --fg: #bbc2cf;
+ --fg: #ebdbb2;
color: var(--fg);
- --fg-emph: #fff;
- --fg-faded: #aaa;
+ --fg-emph: #fbebe2;
+ --fg-faded: #928373;
--fg-button: var(--fg-faded);
- --fg-link: #abf;
+ --fg-link: #88aaa3;
--fg-code: #ffbe85;
--fg-gold: #fff190;
--emph-shadow: 0 0 1px;
- --bg: #272a34;
- --bg-dark: #21242b;
+ --bg: #1d2021;
+ --bg-dark: #282828;
--trans-time: .2s;
}