Got the homepage sorted

This commit is contained in:
2025-05-17 22:42:48 -06:00
parent b1cd87f20b
commit d86ae2f16b
49 changed files with 5226 additions and 1878 deletions

33
src/pages/index.astro Normal file
View File

@ -0,0 +1,33 @@
---
import SocialLinks from '../components/SocialLinks.astro';
import TechLinks from '../components/TechLinks.astro';
import Layout from '../layouts/Layout.astro';
import '../styles/global.css';
---
<Layout>
<img
src="/logo.webp"
alt="A drawing of Atridad Lahiji by Shelze!"
height={150}
width={150}
/>
<h1 class="bg-gradient-to-r from-primary via-secondary to-accent bg-clip-text text-transparent text-4xl sm:text-6xl font-bold text-center">
Atridad Lahiji
</h1>
<h2 class="text-xl sm:text-3xl font-bol text-center">
Researcher, Full-Stack Developer, and IT Professional.
</h2>
<h3 class="text-lg sm:text-2xl font-bold">Places I Exist:</h3>
<SocialLinks />
<h3 class="text-lg sm:text-2xl font-bold">Stuff I Use:</h3>
<TechLinks />
<!-- <HomeButtonLinks /> -->
</Layout>