Initial commit

This commit is contained in:
Rami Bitar
2026-06-07 20:31:42 -04:00
commit 90f6635b08
82 changed files with 12645 additions and 0 deletions

23
editor.config.tsx Normal file
View File

@@ -0,0 +1,23 @@
import { Config } from "@reacteditor/core";
import heroConfig from "@/components/hero/hero.config";
import { HeroProps } from "@/components/hero/hero";
const categories = {
hero: { title: "Hero" },
};
export type Components = {
hero: HeroProps;
};
export type UserConfig = Config<{
components: Components;
categories: ["hero"];
}>;
export const appConfig: UserConfig = {
categories,
components: {
hero: heroConfig,
} as any,
};