|
|
@ -1,7 +1,8 @@ |
|
|
|
import type {NextPageWithLayout} from './_app' |
|
|
|
import type {NextPageWithLayout} from "./_app" |
|
|
|
import type { ReactElement } from 'react' |
|
|
|
import type { ReactElement } from "react" |
|
|
|
import Layout from '../components/layout' |
|
|
|
import Layout from "../components/layout" |
|
|
|
import styled from 'styled-components' |
|
|
|
import Nav from "../components/nav" |
|
|
|
|
|
|
|
import styled from "styled-components" |
|
|
|
import Link from "next/link" |
|
|
|
import Link from "next/link" |
|
|
|
|
|
|
|
|
|
|
|
export const Section = styled.section` |
|
|
|
export const Section = styled.section` |
|
|
@ -9,7 +10,9 @@ export const Section = styled.section` |
|
|
|
justify-content: center; |
|
|
|
justify-content: center; |
|
|
|
flex-direction: column; |
|
|
|
flex-direction: column; |
|
|
|
padding: 0 1rem; |
|
|
|
padding: 0 1rem; |
|
|
|
margin: 2rem 0; |
|
|
|
/*margin: 2rem 0;*/ |
|
|
|
|
|
|
|
margin: 0 0; |
|
|
|
|
|
|
|
height: 100vh; |
|
|
|
|
|
|
|
|
|
|
|
h2, h3 { |
|
|
|
h2, h3 { |
|
|
|
margin: 8px 0; |
|
|
|
margin: 8px 0; |
|
|
@ -20,6 +23,10 @@ export const Section = styled.section` |
|
|
|
color: var(--fg); |
|
|
|
color: var(--fg); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.topmargin { |
|
|
|
|
|
|
|
margin-top: 2rem; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
ul li { |
|
|
|
ul li { |
|
|
|
margin: .5rem 2.5rem;
|
|
|
|
margin: .5rem 2.5rem;
|
|
|
|
} |
|
|
|
} |
|
|
@ -49,13 +56,11 @@ const Page: NextPageWithLayout = () => { |
|
|
|
return ( |
|
|
|
return ( |
|
|
|
<> |
|
|
|
<> |
|
|
|
<Section>
|
|
|
|
<Section>
|
|
|
|
<h2 id="about">About</h2>
|
|
|
|
<h2 id="about">$ whoami</h2>
|
|
|
|
<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> |
|
|
|
<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*/} |
|
|
|
{/*TODO: Add GitHub code frequency/contrib here*/} |
|
|
|
</Section>
|
|
|
|
<p className="topmargin">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>
|
|
|
|
|
|
|
|
<Nav /> |
|
|
|
<Section>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
|
|
<Section> |
|
|
|
<Section> |
|
|
|