Files
my-website-v2/frontend/routes/index.tsx
Wyatt J. Miller 49374b646b
Some checks failed
Build and Release Docker Images / build-and-push (./backend, public/Dockerfile, my-website-v2_public) (push) Failing after 22m59s
Build and Release Docker Images / build-and-push (./backend, task/Dockerfile, my-website-v2_task) (push) Failing after 23m41s
Build and Release Docker Images / build-and-push (./frontend, Dockerfile, my-website-v2_frontend) (push) Failing after 17m11s
Build and Release Docker Images / create-release (push) Has been skipped
fixed frontend header background color
2025-07-27 15:49:37 -04:00

29 lines
1.1 KiB
TypeScript

import { PhotoCircle } from "../components/PhotoCircle.tsx";
export default function Home() {
return (
<body class="bg-[#313244]">
<div class="flex flex-col items-center justify-between min-h-screen">
<div class="sm:mt-14 sm:mb-14 mt-12 mb-4 flex flex-col items-center gap-y-5 gap-x-10 md:flex-row">
<PhotoCircle
src="https://wyattjmiller.us-ord-1.linodeobjects.com/IMG_1480-min.png"
alt="Wyatt's profile photo"
/>
<div class="space-y-2 text-center md:text-left">
<h1 class="text-2xl text-[#f5e0dc] font-bold sm:text-4xl">
Heya! I'm Wyatt
</h1>
<h2 class="text-md font-medium text-[#f2cdcd] sm:text-xl">
Thanks for checking out this corner of the Internet!
</h2>
<h3 class="text-sm font-light italic text-[#f5e0dc] sm:text-md">
I design and develop software for developers, for end users, and
everyone in between
</h3>
</div>
</div>
</div>
</body>
);
}