Deno re-write

This commit is contained in:
2025-04-23 01:15:21 -06:00
parent 88aa5b27d7
commit 261aab9a4b
91 changed files with 362 additions and 5678 deletions

20
routes/index.tsx Normal file
View File

@ -0,0 +1,20 @@
import SocialLinks from "../components/SocialLinks.tsx";
export default function Home() {
return (
<>
<img
src="/logo.webp"
alt="A drawing of Atridad Lahiji by Shelze!"
height={200}
width={200}
/>
<h1 class="bg-gradient-to-r from-primary via-secondary to-accent bg-clip-text text-transparent text-6xl font-bold">
Atridad Lahiji
</h1>
<SocialLinks />
</>
);
}