Skip to content

Commit

Permalink
feat: Add Hi page
Browse files Browse the repository at this point in the history
  • Loading branch information
franky47 committed May 30, 2024
1 parent cf17d31 commit 1a7fcfe
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions src/app/hi/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
export default function Page() {
return (
<main>
<h1>François Best</h1>
<p>Find me on:</p>
<ul>
<li>
<a href="https://x.com/fortysevenfx">X / Twitter</a>
</li>
<li>
<a href="https://mamot.fr/@Franky47">Mastodon</a>
</li>
<li>
<a href="https://github.com/franky47">GitHub</a>
</li>
<li>
<a href="https://www.linkedin.com/in/francoisbest">LinkedIn</a>
</li>
</ul>
<p>Some of the things I'm working on:</p>
<ul>
<li>
<a href="https://nuqs.47ng.com">nuqs</a>, a type-safe search params
state manager for Next.js
</li>
<li>
<a href="https://chiffre.io">Chiffre.io</a>, an end-to-end encrypted
web analytics SaaS
</li>
<li>
And many other{' '}
<a href="https://github.com/47ng">open-source libraries</a>
</li>
</ul>
</main>
)
}

0 comments on commit 1a7fcfe

Please sign in to comment.