Pagespeed hates this one trick!
All checks were successful
Docker Deploy / build-and-push (push) Successful in 3m33s

This commit is contained in:
2025-06-12 23:58:06 -06:00
parent 28f41ac94d
commit 2a79d0da67
8 changed files with 100 additions and 77 deletions

View File

@ -10,9 +10,12 @@ import { personalInfo, homepageSections } from "../config/data";
<Image
src={personalInfo.profileImage.src}
alt={personalInfo.profileImage.alt}
height={personalInfo.profileImage.height}
width={personalInfo.profileImage.width}
loading="eager"
width={300}
height={300}
layout="constrained"
priority={true}
class="rounded-full mx-auto"
style="max-width: 12rem; width: 100%;"
/>
<h1
@ -21,15 +24,19 @@ import { personalInfo, homepageSections } from "../config/data";
{personalInfo.name}
</h1>
<h2 class="text-xl sm:text-3xl font-bold text-center">
<h2 class="text-xl sm:text-3xl font-bold text-center mx-6">
{personalInfo.tagline}
</h2>
<h3 class="text-lg sm:text-2xl font-bold">{homepageSections.socialLinks.title}</h3>
<h3 class="text-lg sm:text-2xl font-bold">
{homepageSections.socialLinks.title}
</h3>
<SocialLinks />
<h3 class="text-lg sm:text-2xl font-bold">{homepageSections.techStack.title}</h3>
<h3 class="text-lg sm:text-2xl font-bold">
{homepageSections.techStack.title}
</h3>
<TechLinks />
</Layout>