Sizing fixes for mobile
All checks were successful
Docker Deploy / build-and-push (push) Successful in 5m3s
All checks were successful
Docker Deploy / build-and-push (push) Successful in 5m3s
This commit is contained in:
parent
16dd4463ae
commit
a6a17e8969
3 changed files with 8 additions and 8 deletions
|
@ -3,7 +3,7 @@ import { SiBluesky, SiForgejo, SiRss } from "@preact-icons/si";
|
|||
|
||||
export default function SocialLinks() {
|
||||
return (
|
||||
<div class="flex flex-row gap-4 text-3xl">
|
||||
<div class="flex flex-row gap-4 text-xl sm:text-3xl">
|
||||
<a
|
||||
href="mailto:me@atri.dad"
|
||||
aria-label="Email me"
|
||||
|
|
|
@ -10,7 +10,7 @@ import {
|
|||
|
||||
export default function TechLinks() {
|
||||
return (
|
||||
<div class="flex flex-row gap-4 text-3xl">
|
||||
<div class="flex flex-row gap-4 text-xl sm:text-3xl">
|
||||
<a
|
||||
href="https://react.dev/"
|
||||
target="_blank"
|
||||
|
|
|
@ -8,23 +8,23 @@ export default function Home() {
|
|||
<img
|
||||
src="/logo.webp"
|
||||
alt="A drawing of Atridad Lahiji by Shelze!"
|
||||
height={200}
|
||||
width={200}
|
||||
height={150}
|
||||
width={150}
|
||||
/>
|
||||
|
||||
<h1 class="bg-gradient-to-r from-primary via-secondary to-accent bg-clip-text text-transparent text-6xl font-bold">
|
||||
<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-3xl font-bold">
|
||||
<h2 class="text-xl sm:text-3xl font-bol text-center">
|
||||
Researcher, Full-Stack Developer, and IT Professional.
|
||||
</h2>
|
||||
|
||||
<h3 class="text-2xl font-bold">Places I Exist:</h3>
|
||||
<h3 class="text-lg sm:text-2xl font-bold">Places I Exist:</h3>
|
||||
|
||||
<SocialLinks />
|
||||
|
||||
<h3 class="text-2xl font-bold">Stuff I Use:</h3>
|
||||
<h3 class="text-lg sm:text-2xl font-bold">Stuff I Use:</h3>
|
||||
|
||||
<TechLinks />
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue