mirror of https://github.com/almqv/wych.dev
parent
40e52a23e5
commit
569c557382
@ -1,7 +1,5 @@ |
||||
const Layout = ({ |
||||
children, |
||||
}: Readonly<{ |
||||
children: React.ReactNode; |
||||
}>) => <div className="prose dark:prose-dark max-w-screen-lg">{children}</div>; |
||||
const Layout = ({ children }: { children: React.ReactNode }) => ( |
||||
<div className="prose dark:prose-dark max-w-screen-lg">{children}</div> |
||||
); |
||||
|
||||
export default Layout; |
||||
|
@ -0,0 +1,20 @@ |
||||
import { notFound } from "next/navigation"; |
||||
|
||||
type Log = { |
||||
title: string; |
||||
createdAt: Date; |
||||
updatedAt: Date; |
||||
content: React.ReactNode; |
||||
}; |
||||
|
||||
const Page = async () => { |
||||
const post = undefined; |
||||
|
||||
if (!post) { |
||||
return notFound(); |
||||
} |
||||
|
||||
return <h1>WIP</h1>; |
||||
}; |
||||
|
||||
export default Page; |
@ -1,5 +1,63 @@ |
||||
import Image from "next/image"; |
||||
"use client"; |
||||
|
||||
import { useTheme } from "next-themes"; |
||||
|
||||
export default function Home() { |
||||
return <h1>TEST</h1>; |
||||
const theme = useTheme(); |
||||
return ( |
||||
<> |
||||
<section> |
||||
<h2 id="about">/almqv</h2> |
||||
<p> |
||||
I am a 100201-year-old <em>engineer</em> with a passion for{" "} |
||||
<em>CS</em>, <em>physics</em>, and <em>mathematics</em>. |
||||
</p> |
||||
<p> |
||||
I am also a startup founder. Currently working on{" "} |
||||
<a |
||||
href="https://www.linkedin.com/company/ingenuityai/" |
||||
target="_blank" |
||||
rel="noreferrer" |
||||
> |
||||
ingenuity |
||||
</a> |
||||
. |
||||
</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="noreferrer"> |
||||
GitHub |
||||
</a> |
||||
. |
||||
</p> |
||||
</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. |
||||
</p> |
||||
<ul> |
||||
<li> |
||||
PGP fingerprint:{" "} |
||||
<code>68B2 9768 49F0 3C72 38AE B081 E31A 99CE 3E75 A158</code> |
||||
</li> |
||||
<li>Email: elalmqvist@gmail.com</li> |
||||
<li> |
||||
GitHub:{" "} |
||||
<a href="https://github.com/almqv" target="_blank" rel="noreferrer"> |
||||
github.com/almqv |
||||
</a> |
||||
</li> |
||||
</ul> |
||||
</section> |
||||
</> |
||||
); |
||||
} |
||||
|
Loading…
Reference in new issue