chore: updated width for some pages/components 3185a88f
Steve · 2026-05-01 23:51 4 file(s) · +4 −4
src/components/page/ProjectCard.astro +1 −1
5 5
6 6
<div
7 7
	style={{ borderWidth: "1px" }}
8 -
	class="flex max-w-[500px] cursor-pointer flex-col items-start justify-start gap-2 overflow-hidden rounded-lg border-accent-2 transition-all ease-in-out hover:border-accent"
8 +
	class="flex cursor-pointer flex-col items-start justify-start gap-2 overflow-hidden rounded-lg border-accent-2 transition-all ease-in-out hover:border-accent"
9 9
>
10 10
	<a href={content.link} target="_blank">
11 11
    <Image height="800" width="1200" src={content.image} alt={content.title} loading={index < 2 ? "eager" : "lazy"} />
src/pages/about.astro +1 −1
10 10
11 11
<PageLayout meta={meta}>
12 12
  <article class="flex-grow break-words">
13 -
    <div class="prose prose-sm prose-cactus prose-headings:font-semibold">
13 +
    <div class="prose prose-sm prose-cactus prose-headings:font-semibold max-w-none">
14 14
      <Content />
15 15
    </div>
16 16
  </article>
src/pages/projects.astro +1 −1
10 10
---
11 11
12 12
<PageLayout meta={meta}>
13 -
	<div class="flex min-h-screen flex-col items-start justify-start gap-6">
13 +
	<div class="flex min-h-screen flex-col items-start justify-start gap-6 max-w-none">
14 14
	<h1 class="title">Projects</h1>
15 15
		{projects.map((project, index) => <ProjectCard content={project} index={index} />)}
16 16
	</div>
src/pages/uses.astro +1 −1
11 11
<PageLayout meta={meta}>
12 12
  <article class="flex-grow break-words">
13 13
    <div
14 -
      class="prose prose-sm prose-cactus prose-headings:font-semibold"
14 +
      class="prose prose-sm prose-cactus prose-headings:font-semibold max-w-none"
15 15
    >
16 16
      <Content />
17 17
    </div>