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:
33
frontend/src/shared/index.ts
Normal file
33
frontend/src/shared/index.ts
Normal 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";
|
||||
Reference in New Issue
Block a user