Files
000_notes/aastock/1/blog/app/page.tsx
louiscklaw 8013ac2455 update,
2025-02-01 20:19:28 +08:00

22 lines
718 B
TypeScript

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>
)
}