71 lines
2.1 KiB
TypeScript
71 lines
2.1 KiB
TypeScript
import { ComponentConfig } from "@reacteditor/core";
|
|
import { LayoutTemplate } from "lucide-react";
|
|
import { Hero, type HeroProps } from "@/editor/components/hero/hero";
|
|
|
|
export const heroEditor: ComponentConfig<HeroProps> = {
|
|
label: "Hero",
|
|
icon: <LayoutTemplate size={16} />,
|
|
category: "hero",
|
|
defaultProps: {
|
|
tagline: "Spring 2026",
|
|
heading: "Made for the way you move",
|
|
subheading:
|
|
"A considered wardrobe of essentials, cut from natural fibers and designed to last.",
|
|
primaryCta: { label: "Shop the collection", href: "/collections" },
|
|
secondaryCta: { label: "Our story", href: "/about" },
|
|
imageUrl:
|
|
"https://images.unsplash.com/photo-1490481651871-ab68de25d43d?auto=format&fit=crop&w=2400&q=80",
|
|
align: "left",
|
|
height: "lg",
|
|
tone: "dark",
|
|
},
|
|
fields: {
|
|
tagline: { label: "Tagline", type: "text", contentEditable: true },
|
|
heading: { label: "Heading", type: "textarea", contentEditable: true },
|
|
subheading: { label: "Subheading", type: "textarea", contentEditable: true },
|
|
primaryCta: {
|
|
label: "Primary CTA",
|
|
type: "object",
|
|
objectFields: {
|
|
label: { label: "Label", type: "text", contentEditable: true },
|
|
href: { label: "Link", type: "text" },
|
|
},
|
|
},
|
|
secondaryCta: {
|
|
label: "Secondary CTA",
|
|
type: "object",
|
|
objectFields: {
|
|
label: { label: "Label", type: "text", contentEditable: true },
|
|
href: { label: "Link", type: "text" },
|
|
},
|
|
},
|
|
imageUrl: { label: "Background image URL", type: "text" },
|
|
align: {
|
|
label: "Alignment",
|
|
type: "radio",
|
|
options: [
|
|
{ label: "Left", value: "left" },
|
|
{ label: "Center", value: "center" },
|
|
],
|
|
},
|
|
height: {
|
|
label: "Height",
|
|
type: "select",
|
|
options: [
|
|
{ label: "Medium", value: "md" },
|
|
{ label: "Large", value: "lg" },
|
|
{ label: "Full", value: "full" },
|
|
],
|
|
},
|
|
tone: {
|
|
label: "Tone",
|
|
type: "radio",
|
|
options: [
|
|
{ label: "Light", value: "light" },
|
|
{ label: "Dark", value: "dark" },
|
|
],
|
|
},
|
|
},
|
|
render: (props) => <Hero {...props} />,
|
|
};
|