Rearrange page content to place catalog below educational information

Update `catalog.tsx` to move the catalog section below the `PublicEducation` component.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 0d01f99a-ea6a-447d-82fd-311715434a39
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: 36708a85-d1d0-4538-b859-3b30a9e696a9
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/e32d2b99-1721-47dd-833c-98b372f48008/0d01f99a-ea6a-447d-82fd-311715434a39/w289HdZ
Replit-Helium-Checkpoint-Created: true
This commit is contained in:
Replit Agent 2026-06-11 08:30:39 +00:00
parent 5237f59366
commit 3c6abf1787

View file

@ -57,6 +57,8 @@ export default function Catalog() {
</div> </div>
</section> </section>
<PublicEducation />
<section className="space-y-6"> <section className="space-y-6">
<div className="flex flex-col gap-2 sm:flex-row sm:items-end sm:justify-between"> <div className="flex flex-col gap-2 sm:flex-row sm:items-end sm:justify-between">
<div> <div>
@ -166,8 +168,6 @@ export default function Catalog() {
</div> </div>
)} )}
</section> </section>
<PublicEducation />
</div> </div>
); );
} }