Content update & styling tweaks

pull/1/head
E. Almqvist 2 years ago
parent 57abe7bb58
commit 65e53bbc9e
  1. 15
      components/footer.tsx
  2. 2
      components/header.tsx
  3. 16
      pages/index.tsx
  4. 2
      styles/globals.css

@ -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 = () => {
<>
<Spacer />
<FooterCont>
<p>Copyright &copy; {new Date().getFullYear()} Elias Almqvist</p>
<UList>
<li><a href="#">{"<Back to top>"}</a></li>
<li><Link href="/">{"<Go back home>"}</Link></li>
</UList>
<p>Source Code</p>
<UList>
<li><a href="https://github.com/E-Almqvist/wychdev-nextjs" target="_blank" rel="noreferrer">GitHub</a></li>
<li><a href="https://git.wych.dev/wychdev-nextjs.git" target="_blank" rel="noreferrer">WychGit</a></li>
</UList>
<p>&copy; {new Date().getFullYear()} Elias Almqvist</p>
</FooterCont>
</>
)

@ -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 {

@ -50,27 +50,26 @@ const Page: NextPageWithLayout = () => {
<>
<Section>
<h2 id="about">About</h2>
<p>I am a <em>student/full-stack software engineer</em> with a passion for <em>programming</em>, <em>physics</em>, <em>mathematics</em> and anything <em>*NIX</em> (Linux, UNIX etc) related.</p>
<p>I am a <em>Computer Science & Engineering student</em> with a passion for <em>programming</em>, <em>physics</em>, <em>mathematics</em> and anything <em>*NIX</em> <Nem>(Linux, UNIX etc)</Nem> related.</p>
{/*TODO: Add GitHub code frequency/contrib here*/}
</Section>
<Section>
<h2>Projects</h2>
<p>Most of my projects are open-source, and if you are interested, you can find all of my projects on my <a href="https://git.wych.dev" target="_blank" rel="noreferrer">git-server</a> or <a href="https://github.com/E-Almqvist" target="_blank" rel="noreferrer">GitHub</a>. You can also check out <Link href="/projects">/projects</Link> to view all of my projects (including hardware projects and so on).</p>
</Section>
<Section>
<h2 id="skills">Skills</h2>
<h2 id="skills">Skillstack</h2>
<p>Here are programming languages/technologies that I know/use (<em>not limited to or ranked in any particular order</em>):</p>
<h3>Languages</h3>
<h3>Programming Languages</h3>
<ul>
<li>Rust</li>
<li>C/C++</li>
<li>Python</li>
<li>Ruby</li>
<li>Lua Script</li>
<li>Assembly (NASM)</li>
<li>Bash</li>
<li>Assembly <Nem>(NASM, x86)</Nem></li>
<li>Bash <Nem>(Literally any POSIX shell)</Nem></li>
<li>TypeScript/JavaScript</li>
<li>C#</li>
</ul>
@ -80,10 +79,11 @@ const Page: NextPageWithLayout = () => {
<li>HTML + CSS/SASS/SCSS</li>
<li>Docker</li>
<li>
GNU/Linux
Linux <Nem>(GNU/Linux)</Nem>
<ul>
<li>Arch</li>
<li>Debian</li>
<li>...</li>
</ul>
</li>
<li>Next.js (+ React)</li>
@ -99,7 +99,7 @@ const Page: NextPageWithLayout = () => {
<p>You can contact me through email. And if you prefer it, you can contact me using PGP. Do note that my <em>email address below is encrypted</em> as a precaution against bots et cetera. <em>Do not worry, it is easy to crack</em>. Alternatively you could query for my email with my PGP fingerprint (key-id) on some PGP key server (i.e. the <a href="https://pgp.mit.edu/" target="_blank" rel="noreferrer">MIT</a> or <a href="https://keyserver.ubuntu.com/" target="_blank" rel="noreferrer">Ubuntu</a> key-server).</p>
<CList>
<li>
PGP Fingerprint: <Code>68B2976849F03C7238AEB081E31A99CE3E75A158</Code>
PGP fingerprint: <Code>68B2 9768 49F0 3C72 38AE B081 E31A 99CE 3E75 A158</Code>
</li>
<li>
Email: <Code>cnlueXpkaXZmZ0B0em52eS5wYnoK</Code>

@ -1,5 +1,5 @@
:root {
font-size: 18px;
font-size: 16px;
--border-type: solid;
--border-size: 1px;
--border-color: #373a44;

Loading…
Cancel
Save