mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-20 06:20:11 +00:00
## Summary <!-- One sentence describing what changed and why. --> ## Changes - **What**: <!-- Core functionality added/modified --> - **Breaking**: <!-- Any breaking changes (if none, remove this line) --> - **Dependencies**: <!-- New dependencies (if none, remove this line) --> ## Review Focus <!-- Critical design decisions or edge cases that need attention --> <!-- If this PR fixes an issue, uncomment and update the line below --> <!-- Fixes #ISSUE_NUMBER --> ## Screenshots (if applicable) <!-- Add screenshots or video recording to help explain your changes --> ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-10145-feat-website-add-Wave-4-secondary-pages-3266d73d3650818c9101c7d2086c21ba) by [Unito](https://www.unito.io)
44 lines
1.5 KiB
Plaintext
44 lines
1.5 KiB
Plaintext
---
|
|
import BaseLayout from '../layouts/BaseLayout.astro'
|
|
import SiteNav from '../components/SiteNav.vue'
|
|
import SiteFooter from '../components/SiteFooter.vue'
|
|
---
|
|
|
|
<BaseLayout title="Gallery — Comfy">
|
|
<SiteNav client:load />
|
|
<main class="bg-black text-white">
|
|
<!-- Hero -->
|
|
<section class="mx-auto max-w-5xl px-6 pb-16 pt-32 text-center">
|
|
<h1 class="text-4xl font-bold tracking-tight sm:text-5xl">
|
|
Built, Tweaked, and <span class="text-brand-yellow">Dreamed</span> in ComfyUI
|
|
</h1>
|
|
<p class="mx-auto mt-4 max-w-2xl text-lg text-smoke-700">
|
|
A small glimpse of what's being created with ComfyUI by the community.
|
|
</p>
|
|
</section>
|
|
|
|
<!-- Placeholder Grid -->
|
|
<section class="mx-auto max-w-6xl px-6 pb-24">
|
|
<div class="grid grid-cols-1 gap-6 sm:grid-cols-2 md:grid-cols-3">
|
|
{Array.from({ length: 6 }).map(() => (
|
|
<div class="flex aspect-video items-center justify-center rounded-xl border border-white/10 bg-charcoal-600">
|
|
<p class="text-sm text-smoke-700">Community showcase coming soon</p>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</section>
|
|
|
|
<!-- CTA -->
|
|
<section class="mx-auto max-w-3xl px-6 pb-32 text-center">
|
|
<h2 class="text-2xl font-semibold">Have something cool to share?</h2>
|
|
<a
|
|
href="https://support.comfy.org/"
|
|
class="mt-6 inline-block rounded-full bg-brand-yellow px-8 py-3 font-medium text-black transition hover:opacity-90"
|
|
>
|
|
Get in Touch
|
|
</a>
|
|
</section>
|
|
</main>
|
|
<SiteFooter />
|
|
</BaseLayout>
|