feat/polish (#5)
All checks were successful
Build and Deploy / deploy (push) Successful in 51s

Reorder homepage sections (journey above projects), refine component styles, update copy and data across projects, timeline, and homelab.

Reviewed-on: #5
This commit was merged in pull request #5.
This commit is contained in:
2026-04-20 00:34:50 +00:00
parent 8e9fcfaeeb
commit 4e51dd4a83
15 changed files with 397 additions and 222 deletions

View File

@@ -16,15 +16,15 @@ export default function Home() {
return (
<>
<Hero />
<Timeline />
<Widget title="tyler/projects" badge={featuredProjects.length}>
<div className="grid grid-cols-1 sm:grid-cols-2 gap-3">
<div className="grid grid-cols-1 sm:grid-cols-2 gap-1ch">
{featuredProjects.map((project) => (
<ProjectCard key={project.slug} project={project} />
))}
</div>
</Widget>
<Skills />
<Timeline />
</>
);
}