20 lines
444 B
TypeScript
20 lines
444 B
TypeScript
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 />
|
|
</>
|
|
);
|
|
}
|