parent
db6d77dced
commit
a8cb979e95
@ -1,23 +1,31 @@ |
||||
import { useRouter } from "next/router" |
||||
import { ReactNode } from "react" |
||||
import Link from "next/link" |
||||
import styled, {css} from "styled-components" |
||||
import { useRouter } from "next/router"; |
||||
import { ReactNode } from "react"; |
||||
import Link from "next/link"; |
||||
import styled, { css } from "styled-components"; |
||||
|
||||
const ALink = styled.a<{ active?: boolean }>` |
||||
border-bottom: 1px solid transparent; |
||||
${({active}) => active && css` |
||||
${({ active }) => |
||||
active && |
||||
css` |
||||
color: var(--fg) !important; |
||||
/*border-bottom-color: currentColor;*/ |
||||
`}
|
||||
` |
||||
`;
|
||||
|
||||
const ActiveLink = ({children, href}: {children: ReactNode, href: string}) => { |
||||
const router = useRouter() |
||||
const ActiveLink = ({ |
||||
children, |
||||
href, |
||||
}: { |
||||
children: ReactNode; |
||||
href: string; |
||||
}) => { |
||||
const router = useRouter(); |
||||
return ( |
||||
<Link href={href} passHref> |
||||
<ALink active={router.asPath === href}>{children}</ALink> |
||||
</Link> |
||||
) |
||||
} |
||||
); |
||||
}; |
||||
|
||||
export default ActiveLink |
||||
export default ActiveLink; |
||||
|
@ -1,16 +1,28 @@ |
||||
import {IconDefinition} from "@fortawesome/fontawesome-svg-core" |
||||
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome" |
||||
import styled from "styled-components" |
||||
import { IconDefinition } from "@fortawesome/fontawesome-svg-core"; |
||||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; |
||||
import styled from "styled-components"; |
||||
|
||||
const ILink = styled.a` |
||||
font-size: 1.5rem; |
||||
margin: 0 .4rem; |
||||
` |
||||
margin: 0 0.4rem; |
||||
`;
|
||||
|
||||
const IconLink = ({href, icon, target, rel}: {href: string, icon: IconDefinition, target: string, rel: string}) => { |
||||
const IconLink = ({ |
||||
href, |
||||
icon, |
||||
target, |
||||
rel, |
||||
}: { |
||||
href: string; |
||||
icon: IconDefinition; |
||||
target: string; |
||||
rel: string; |
||||
}) => { |
||||
return ( |
||||
<ILink href={href} target={target} rel={rel}><FontAwesomeIcon icon={icon}/></ILink> |
||||
) |
||||
} |
||||
<ILink href={href} target={target} rel={rel}> |
||||
<FontAwesomeIcon icon={icon} /> |
||||
</ILink> |
||||
); |
||||
}; |
||||
|
||||
export default IconLink |
||||
export default IconLink; |
||||
|
@ -1,17 +1,19 @@ |
||||
import Header from "./header" |
||||
import Footer from "./footer" |
||||
import {ReactNode} from "react" |
||||
import Head from "next/head" |
||||
import Header from "./header"; |
||||
import Footer from "./footer"; |
||||
import { ReactNode } from "react"; |
||||
import Head from "next/head"; |
||||
|
||||
const Layout = ({ children }: { children: ReactNode }) => { |
||||
return (<> |
||||
return ( |
||||
<> |
||||
<Head> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
||||
<title>wych.dev</title> |
||||
</Head> |
||||
<main>{children}</main> |
||||
<Footer /> |
||||
</>) |
||||
} |
||||
</> |
||||
); |
||||
}; |
||||
|
||||
export default Layout |
||||
export default Layout; |
||||
|
@ -0,0 +1,194 @@ |
||||
import type { NextPageWithLayout } from "./_app"; |
||||
import type { ReactElement } from "react"; |
||||
import Layout from "../components/layout"; |
||||
import styled from "styled-components"; |
||||
import IconLink from "components/iconlink"; |
||||
import ScrollMe from "components/scrollme"; |
||||
import { faEnvelope } from "@fortawesome/free-solid-svg-icons"; |
||||
import { faGit, faGithub } from "@fortawesome/free-brands-svg-icons"; |
||||
|
||||
export const Section = styled.section` |
||||
display: flex; |
||||
justify-content: center; |
||||
flex-direction: column; |
||||
padding: 0 1rem; |
||||
/*margin: 2rem 0;*/ |
||||
margin: 0 0; |
||||
min-height: 100vh; |
||||
|
||||
h2, |
||||
h3 { |
||||
font-size: 2rem; |
||||
margin: 8px 0; |
||||
} |
||||
|
||||
p { |
||||
margin: 0; |
||||
color: var(--fg); |
||||
} |
||||
|
||||
.topmargin { |
||||
margin-top: 1rem; |
||||
} |
||||
|
||||
ul li { |
||||
margin: 0.5rem 2.5rem; |
||||
} |
||||
|
||||
#img-container { |
||||
display: flex; |
||||
justify-content: center; |
||||
} |
||||
#img-container img { |
||||
width: 22rem; |
||||
height: auto; |
||||
} |
||||
|
||||
footer { |
||||
margin-top: 1rem; |
||||
opacity: 0.5; |
||||
} |
||||
`; |
||||
|
||||
export const Code = styled.code` |
||||
font-family: monospace; |
||||
font-size: 0.9rem; |
||||
background-color: var(--bg-emph); |
||||
color: var(--fg-code); |
||||
border-radius: 0.4rem; |
||||
padding: 0.1rem 0.4rem; |
||||
`; |
||||
|
||||
export const CList = styled.ul` |
||||
list-style: none; |
||||
|
||||
li { |
||||
margin: 1rem !important; |
||||
} |
||||
`; |
||||
|
||||
export const Nem = styled.span` |
||||
color: var(--fg-faded); |
||||
`; |
||||
|
||||
export const LinkList = styled.div` |
||||
display: flex; |
||||
gap: 1.5rem; |
||||
font-size: 1.2rem; |
||||
border: unset; |
||||
justify-content: center; |
||||
|
||||
a { |
||||
color: var(--fg-button); |
||||
transition: var(--trans-time) opacity; |
||||
} |
||||
|
||||
a:hover { |
||||
opacity: 0.4; |
||||
} |
||||
|
||||
@media screen and (max-width: 960px) { |
||||
word-break: break-word; |
||||
} |
||||
`; |
||||
|
||||
function getAge() { |
||||
let birth = 1050019200; |
||||
let now = Math.floor(Date.now() / 1000); |
||||
return now - birth; |
||||
} |
||||
|
||||
function secondsToYears(secs: number) { |
||||
return Math.floor(secs / 31557600.0); |
||||
} |
||||
|
||||
const Page: NextPageWithLayout = () => { |
||||
return ( |
||||
<> |
||||
<Section> |
||||
<h2 id="about">/almqv</h2> |
||||
<p> |
||||
I am a {secondsToYears(getAge())} year old{" "} |
||||
<em>Computer Science & Engineering student</em> with a passion for{" "} |
||||
<em>physics</em>, <em>programming</em>, <em>mathematics</em> and |
||||
anything <em>*NIX</em> <Nem>(Linux, UNIX etc)</Nem> related. |
||||
</p> |
||||
{/*TODO: Add GitHub code frequency/contrib here*/} |
||||
<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/elal" target="_blank" rel="noreferrer">git-server</a> or <a href="https://github.com/almqv" target="_blank" rel="GITHUBuuuuuuuu |
||||
</Auuuu> |
||||
. |
||||
</p> |
||||
|
||||
<LinkList className="topmargin"> |
||||
<IconLink |
||||
href="#contact" |
||||
icon={faEnvelope} |
||||
target="_self" |
||||
rel="noreferrer" |
||||
/> |
||||
{/*<IconLink href="/projects" icon={ faFolderOpen } target="_self" rel="noreferrer"/>*/} |
||||
<IconLink |
||||
href="https://github.com/almqv" |
||||
icon={faGithub} |
||||
target="_blank" |
||||
rel="noreferrer" |
||||
/> |
||||
<IconLink |
||||
href="https://git.wych.dev/elal" |
||||
icon={faGit} |
||||
target="_blank" |
||||
rel="noreferrer" |
||||
/> |
||||
</LinkList> |
||||
|
||||
<ScrollMe href="#contact" /> |
||||
</Section> |
||||
|
||||
<Section> |
||||
<h2 id="contact">Contact</h2> |
||||
<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>68B2 9768 49F0 3C72 38AE B081 E31A 99CE 3E75 A158</Code> |
||||
</li> |
||||
<li> |
||||
Email: <Code>cnlueXpkaXZmZ0B0em52eS5wYnoK</Code> |
||||
</li> |
||||
<li> |
||||
GitHub:{" "} |
||||
<a href="https://github.com/almqv" target="_blank" rel="noreferrer"> |
||||
github.com/almqv |
||||
</a> |
||||
</li> |
||||
</CList> |
||||
</Section> |
||||
</> |
||||
); |
||||
}; |
||||
|
||||
Page.getLayout = (page: ReactElement) => { |
||||
return <Layout>{page}</Layout>; |
||||
}; |
||||
export default Page; |
@ -1,23 +1,23 @@ |
||||
import "../styles/globals.css" |
||||
import type { AppProps } from "next/app" |
||||
import type { ReactElement, ReactNode } from "react" |
||||
import type { NextPage } from "next" |
||||
import "../styles/globals.css"; |
||||
import type { AppProps } from "next/app"; |
||||
import type { ReactElement, ReactNode } from "react"; |
||||
import type { NextPage } from "next"; |
||||
|
||||
import "@fortawesome/fontawesome-svg-core/styles.css"; |
||||
import { config } from "@fortawesome/fontawesome-svg-core"; |
||||
config.autoAddCss = false; |
||||
|
||||
export type NextPageWithLayout = NextPage & { |
||||
getLayout?: (page: ReactElement) => ReactNode |
||||
} |
||||
getLayout?: (page: ReactElement) => ReactNode; |
||||
}; |
||||
|
||||
type AppPropsWithLayout = AppProps & { |
||||
Component: NextPageWithLayout |
||||
} |
||||
Component: NextPageWithLayout; |
||||
}; |
||||
|
||||
function MyApp({ Component, pageProps }: AppPropsWithLayout) { |
||||
const getLayout = Component.getLayout ?? ((page) => page) |
||||
return getLayout(<Component {...pageProps}/>) |
||||
const getLayout = Component.getLayout ?? ((page) => page); |
||||
return getLayout(<Component {...pageProps} />); |
||||
} |
||||
|
||||
export default MyApp |
||||
export default MyApp; |
||||
|
@ -1,22 +1,28 @@ |
||||
import type {NextPageWithLayout} from './_app' |
||||
import type { ReactElement } from 'react' |
||||
import Layout from '../components/layout' |
||||
import { Section } from './index' |
||||
import Link from "next/link" |
||||
import type { NextPageWithLayout } from "./_app"; |
||||
import type { ReactElement } from "react"; |
||||
import Layout from "../components/layout"; |
||||
import { Section } from "./index"; |
||||
import Link from "next/link"; |
||||
|
||||
const Page: NextPageWithLayout = () => { |
||||
return ( |
||||
<> |
||||
<Section> |
||||
<h2>Page under development...</h2> |
||||
<p>While you wait, why not check out my <a href="https://github.com/E-Almqvist">GitHub</a>? Or perhaps my very own <a href="https://git.wych.dev/elal">git-server</a>?</p> |
||||
<p>Or you could also <Link href="/">go back</Link> to the home page.</p> |
||||
<p> |
||||
While you wait, why not check out my{" "} |
||||
<a href="https://github.com/E-Almqvist">GitHub</a>? Or perhaps my very |
||||
own <a href="https://git.wych.dev/elal">git-server</a>? |
||||
</p> |
||||
<p> |
||||
Or you could also <Link href="/">go back</Link> to the home page. |
||||
</p> |
||||
</Section> |
||||
</> |
||||
) |
||||
} |
||||
); |
||||
}; |
||||
|
||||
Page.getLayout = (page: ReactElement) => { |
||||
return <Layout>{page}</Layout> |
||||
} |
||||
export default Page |
||||
return <Layout>{page}</Layout>; |
||||
}; |
||||
export default Page; |
||||
|
Loading…
Reference in new issue