-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4566ec1
commit 5330b7e
Showing
8 changed files
with
42 additions
and
488 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,26 @@ | ||
import { MainContent } from "./components/MainContent"; | ||
import { Menu } from "./components/Menu"; | ||
|
||
export function App() { | ||
export const App = () => { | ||
return ( | ||
<div className="scroll-smooth"> | ||
<MainContent /> | ||
<Menu title="Menu" triggerName="☰"> | ||
<div className="flex flex-col gap-1 *:underline hover:*:font-semibold"> | ||
<p className="cursor-pointer">Main page (you're currently here)</p> | ||
<a href="/blog">Blog</a> | ||
</div> | ||
</Menu> | ||
<div className="font-[Syne] p-4 flex flex-col"> | ||
<div> | ||
<h1 className="text-2xl">Hello.</h1> | ||
<h1 className="text-2xl">I'm Fen.</h1> | ||
<p>You'd see a fancy 3d render here or something, but let's make this quick.</p> | ||
<br /> | ||
<p>I'm a developer, engineer (sometimes, very bad at it) and a makeshift 3d artist.</p> | ||
<p>I code in <span className="text-[#306998]">Python</span>, <span className="text-[#f0db4f]">JavaScript</span>, <span className="text-[#29beb0]">Go</span> and a bit of <span className="text-[#f89820]">Java</span>, although I also have knowledge of <span className="text-[#61DBFB]">React</span>, NextJS, and some <span className="text-[#41B883]">Vue</span>.</p> | ||
<br /> | ||
<p>I like languages, reading, writing and design.</p> | ||
</div> | ||
<div> | ||
<h1 className="text-2xl">Projects</h1> | ||
Honestly, I would put something here, but I don't think any project of mine is important enough to be mentioned here. | ||
<br /> | ||
However, you can see my stupid half-baked and dead projects over <a href="https://github.com/NotFenixio?tab=repositories" target="_blank" className="font-semibold text-sky-500 hover:text-sky-600">my GitHub repos</a>. | ||
|
||
</div> | ||
<div className="mt-20"> | ||
copyright Fen 2024-25 | ||
</div> | ||
</div> | ||
); | ||
} | ||
) | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.