Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 12 additions & 15 deletions src/app/marketplace/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,27 +82,24 @@ export default async function MarketplaceKitPage({ params }: KitPageProps) {
<p className="type-body-lg mt-6 max-w-3xl text-moloch-800/78">
{item.summary}
</p>
<div className="mt-10">
<div className="relative min-h-[17rem] overflow-hidden border border-moloch-800/15 bg-moloch-800 shadow-[10px_10px_0_rgba(83,74,19,0.14)] sm:min-h-[24rem] lg:min-h-[28rem]">
<Image
src={item.image}
alt=""
fill
priority
className="object-cover"
sizes="(min-width: 1024px) 58vw, 100vw"
/>
</div>
</div>
</div>

<MarketplacePurchasePanel endpoint={item.x402Endpoint} kitSlug={item.slug} />
</div>
</section>

<section className="border-b border-moloch-800/15 py-12 md:py-18">
<div className="container-custom">
<div className="relative min-h-[20rem] overflow-hidden border border-moloch-800/15 bg-moloch-800 shadow-[10px_10px_0_rgba(83,74,19,0.14)] md:min-h-[34rem]">
<Image
src={item.image}
alt=""
fill
priority
className="object-cover"
sizes="100vw"
/>
</div>
</div>
</section>

<section className="border-b border-moloch-800/15 py-16 md:py-24">
<div className="container-custom grid gap-10 lg:grid-cols-[0.8fr_1.2fr] lg:items-start">
<div className="max-w-2xl">
Expand Down
5 changes: 3 additions & 2 deletions src/lib/marketplace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@ export const marketplaceItems: MarketplaceItem[] = [
},
{
label: "Build log",
description: "A longer writeup will be linked here after publication.",
status: "Coming soon",
description:
"Published walkthrough for the DIY cooking companion, including the project context and build process.",
href: "https://paragraph.com/@raidguild-forge/diy-cooking-companion",
},
],
},
Expand Down