diff --git a/components/footer.tsx b/components/footer.tsx
index e09cd0e..e894b35 100644
--- a/components/footer.tsx
+++ b/components/footer.tsx
@@ -3,12 +3,12 @@ import Link from "next/link"
const FooterCont = styled.footer`
display: flex;
- align-items: center;
+ align-items: left;
justify-content: center;
flex-direction: column;
border-top: var(--border-size) var(--border-type) var(--border-color);
margin-top: auto;
- padding: 1.2rem;
+ padding: 0 1.2rem;
color: var(--fg-faded);
`
@@ -29,16 +29,7 @@ const Footer = () => {
<>
- Copyright © {new Date().getFullYear()} Elias Almqvist
-
- {""}
- {""}
-
- Source Code
-
- GitHub
- WychGit
-
+ © {new Date().getFullYear()} Elias Almqvist
>
)
diff --git a/components/header.tsx b/components/header.tsx
index 34d6812..e970b4f 100644
--- a/components/header.tsx
+++ b/components/header.tsx
@@ -7,7 +7,7 @@ const HeaderCont = styled.header`
display: flex;
align-items: center;
border-bottom: var(--border-size) var(--border-type) var(--border-color);
- padding: 1rem 4rem;
+ padding: .8rem 2rem;
gap: 2rem;
h1 {
diff --git a/pages/index.tsx b/pages/index.tsx
index 0f0b4af..58a6219 100755
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -50,27 +50,26 @@ const Page: NextPageWithLayout = () => {
<>
About
- I am a student/full-stack software engineer with a passion for programming , physics , mathematics and anything *NIX (Linux, UNIX etc) related.
+ 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*/}
- Projects
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).
- Skills
+ Skillstack
Here are programming languages/technologies that I know/use (not limited to or ranked in any particular order ):
- Languages
+ Programming Languages
Rust
C/C++
Python
Ruby
Lua Script
- Assembly (NASM)
- Bash
+ Assembly (NASM, x86)
+ Bash (Literally any POSIX shell)
TypeScript/JavaScript
C#
@@ -80,10 +79,11 @@ const Page: NextPageWithLayout = () => {
HTML + CSS/SASS/SCSS
Docker
- GNU/Linux
+ Linux (GNU/Linux)
Next.js (+ React)
@@ -99,7 +99,7 @@ const Page: NextPageWithLayout = () => {
You can contact me through email. And if you prefer it, you can contact me using PGP. Do note that my email address below is encrypted as a precaution against bots et cetera. Do not worry, it is easy to crack . Alternatively you could query for my email with my PGP fingerprint (key-id) on some PGP key server (i.e. the MIT or Ubuntu key-server).
- PGP Fingerprint: 68B2976849F03C7238AEB081E31A99CE3E75A158
+ PGP fingerprint: 68B2 9768 49F0 3C72 38AE B081 E31A 99CE 3E75 A158
Email: cnlueXpkaXZmZ0B0em52eS5wYnoK
diff --git a/styles/globals.css b/styles/globals.css
index 7dedecc..6333dbe 100755
--- a/styles/globals.css
+++ b/styles/globals.css
@@ -1,5 +1,5 @@
:root {
- font-size: 18px;
+ font-size: 16px;
--border-type: solid;
--border-size: 1px;
--border-color: #373a44;