Major re-work!
Some checks failed
Docker Deploy / build-and-push (push) Has been cancelled

This commit is contained in:
2025-06-12 11:09:24 -06:00
parent 324449dd59
commit ab2eb7eeac
13 changed files with 545 additions and 348 deletions

View File

@@ -3,31 +3,32 @@ import { Image } from "astro:assets";
import SocialLinks from "../components/SocialLinks.astro";
import TechLinks from "../components/TechLinks.astro";
import Layout from "../layouts/Layout.astro";
import { personalInfo, homepageSections } from "../config/data";
---
<Layout>
<Image
src="/logo_real.webp"
alt="A drawing of Atridad Lahiji by Shelze!"
height={150}
width={150}
src={personalInfo.profileImage.src}
alt={personalInfo.profileImage.alt}
height={personalInfo.profileImage.height}
width={personalInfo.profileImage.width}
/>
<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
{personalInfo.name}
</h1>
<h2 class="text-xl sm:text-3xl font-bold text-center">
Researcher, Full-Stack Developer, and IT Professional.
{personalInfo.tagline}
</h2>
<h3 class="text-lg sm:text-2xl font-bold">Places I Exist:</h3>
<h3 class="text-lg sm:text-2xl font-bold">{homepageSections.socialLinks.title}</h3>
<SocialLinks />
<h3 class="text-lg sm:text-2xl font-bold">Stuff I Use:</h3>
<h3 class="text-lg sm:text-2xl font-bold">{homepageSections.techStack.title}</h3>
<TechLinks />
</Layout>