feat: add main features

Agents for developpement added + frontend add + backend added. Git viewer created + agent and template creator + layout and project creator
This commit is contained in:
2026-06-06 01:27:01 +02:00
parent 55b3bee2c8
commit 307ae71857
273 changed files with 48740 additions and 0 deletions

View File

@ -0,0 +1,33 @@
/**
* IdeA design system (LD) — public surface of the shared UI kit.
*
* Features import components and the `cn` helper from `@/shared`; the global
* theme (`styles/theme.css`) is imported once at the app entry point.
*/
export { cn } from "./lib/cn";
export type { ClassValue } from "./lib/cn";
export { Button } from "./ui/Button";
export type { ButtonProps, ButtonVariant, ButtonSize } from "./ui/Button";
export { IconButton } from "./ui/IconButton";
export type { IconButtonProps, IconButtonSize } from "./ui/IconButton";
export { Input } from "./ui/Input";
export type { InputProps } from "./ui/Input";
export { Field } from "./ui/Field";
export type { FieldProps } from "./ui/Field";
export { Panel } from "./ui/Panel";
export type { PanelProps } from "./ui/Panel";
export { Tabs } from "./ui/Tabs";
export type { TabsProps, TabItem } from "./ui/Tabs";
export { Toolbar } from "./ui/Toolbar";
export type { ToolbarProps } from "./ui/Toolbar";
export { Spinner } from "./ui/Spinner";
export type { SpinnerProps } from "./ui/Spinner";