39 lines
1.4 KiB
TypeScript
39 lines
1.4 KiB
TypeScript
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
|
// file as the canonical source for the "process" section.
|
|
|
|
import React from 'react';
|
|
import FaqSimple from '@/components/sections/faq/FaqSimple';
|
|
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
|
|
|
export default function ProcessSection(): React.JSX.Element {
|
|
return (
|
|
<div id="process" data-section="process">
|
|
<SectionErrorBoundary name="process">
|
|
<FaqSimple
|
|
tag="Workflow"
|
|
title="The Bake Process"
|
|
description="Simple steps from request to render."
|
|
items={[
|
|
{
|
|
question: "How do I start?",
|
|
answer: "Choose a plan or submit a custom order detailing your build, mob, or vibe.",
|
|
},
|
|
{
|
|
question: "Can I provide references?",
|
|
answer: "Yes! We encourage sending screenshots of your builds or specific thumbnail styles you admire.",
|
|
},
|
|
{
|
|
question: "What's included?",
|
|
answer: "Every project includes 3D scene creation, cinematic lighting, color grading, and revision rounds.",
|
|
},
|
|
{
|
|
question: "Turnaround times?",
|
|
answer: "Turnaround varies by plan; Tier I is 2 days, while custom projects are quoted based on complexity.",
|
|
},
|
|
]}
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
);
|
|
}
|