mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-19 22:09:37 +00:00
## Summary Adds all 11 homepage section components for the comfy.org marketing site. ## Changes (incremental from #10141) - HeroSection.vue: C monogram left, headline right, CTAs - SocialProofBar.vue: 12 enterprise logos + metrics - ProductShowcase.vue: PLACEHOLDER workflow demo - ValuePillars.vue: Build/Customize/Refine/Automate/Run - UseCaseSection.vue: PLACEHOLDER industries - CaseStudySpotlight.vue: PLACEHOLDER bento grid - TestimonialsSection.vue: Filterable by industry - GetStartedSection.vue: 3-step flow - CTASection.vue: Desktop/Cloud/API cards - ManifestoSection.vue: Method Not Magic - AcademySection.vue: Learning paths CTA - Updated index.astro + zh-CN/index.astro ## Stack (via Graphite) - #10140 [1/3] Scaffold - #10141 [2/3] Layout Shell - **[3/3] Homepage Sections** ← this PR (top of stack) ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-10142-feat-add-Wave-3-homepage-sections-11-Vue-components-3-3-3266d73d36508194aa8ee9385733ddb9) by [Unito](https://www.unito.io)
63 lines
1.8 KiB
Vue
63 lines
1.8 KiB
Vue
<script setup lang="ts">
|
|
const steps = [
|
|
{
|
|
number: '1',
|
|
title: 'Download & Sign Up',
|
|
description: 'Get Comfy Desktop for free or create a Cloud account'
|
|
},
|
|
{
|
|
number: '2',
|
|
title: 'Load a Workflow',
|
|
description:
|
|
'Choose from thousands of community workflows or build your own'
|
|
},
|
|
{
|
|
number: '3',
|
|
title: 'Generate',
|
|
description: 'Hit run and watch your AI workflow come to life'
|
|
}
|
|
]
|
|
</script>
|
|
|
|
<template>
|
|
<section class="border-t border-white/10 bg-black py-24">
|
|
<div class="mx-auto max-w-7xl px-6 text-center">
|
|
<h2 class="text-3xl font-bold text-white">Get Started in Minutes</h2>
|
|
<p class="mt-4 text-smoke-700">
|
|
From download to your first AI-generated output in three simple steps
|
|
</p>
|
|
|
|
<!-- Steps -->
|
|
<div class="mt-16 grid grid-cols-1 gap-8 md:grid-cols-3">
|
|
<div v-for="(step, index) in steps" :key="step.number" class="relative">
|
|
<!-- Connecting line between steps (desktop only) -->
|
|
<div
|
|
v-if="index < steps.length - 1"
|
|
class="absolute right-0 top-8 hidden w-full translate-x-1/2 border-t border-brand-yellow/20 md:block"
|
|
/>
|
|
|
|
<div class="relative">
|
|
<span class="text-6xl font-bold text-brand-yellow/20">
|
|
{{ step.number }}
|
|
</span>
|
|
<h3 class="mt-2 text-xl font-semibold text-white">
|
|
{{ step.title }}
|
|
</h3>
|
|
<p class="mt-2 text-sm text-smoke-700">
|
|
{{ step.description }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- CTA -->
|
|
<a
|
|
href="/download"
|
|
class="mt-12 inline-block rounded-full bg-brand-yellow px-8 py-3 text-sm font-semibold text-black transition-opacity hover:opacity-90"
|
|
>
|
|
DOWNLOAD COMFY
|
|
</a>
|
|
</div>
|
|
</section>
|
|
</template>
|