This commit is contained in:
louiscklaw
2025-02-01 20:19:28 +08:00
commit 8013ac2455
274 changed files with 26971 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import { BlogPosts } from 'app/components/posts'
export default function Page() {
return (
<section>
<h1 className="mb-8 text-2xl font-semibold tracking-tighter">
My Portfolio
</h1>
<p className="mb-4">
{`I'm a Vim enthusiast and tab advocate, finding unmatched efficiency in
Vim's keystroke commands and tabs' flexibility for personal viewing
preferences. This extends to my support for static typing, where its
early error detection ensures cleaner code, and my preference for dark
mode, which eases long coding sessions by reducing eye strain.`}
</p>
<div className="my-8">
<BlogPosts />
</div>
</section>
)
}