ResourcesUpdated May 3, 2026

Examples

Reference apps and integration recipes that consume EnterUI in real frameworks.

Two reference apps live inside the monorepo and exercise the public package surface end to end. They are the fastest way to see EnterUI working in Next.js and Vite without a Tailwind setup.

#Reference apps in this repo

Run them locally:

Code
pnpm install
pnpm --filter @froggdesign/example-next-app dev
pnpm --filter @froggdesign/example-vite-app dev

Both consume packages through their public exports map, exactly like an external consumer would after pnpm add @froggdesign/enter-ui.

#Theme + component import

Every example boots from the same two-line setup. Theme CSS first, components CSS second.

Code
import "@froggdesign/theme/styles.css";
import "@froggdesign/enter-ui/styles.css";

#Usage

Components import directly from the package root.

Code
import { Button, Card, CardContent } from "@froggdesign/enter-ui";

export function Example() {
  return (
    <Card>
      <CardContent>
        <Button>Save changes</Button>
      </CardContent>
    </Card>
  );
}

#Where to go next

  • See Installation for the consumer setup outside of this monorepo.
  • See Theming for token overrides per-app or per-scope.
  • Browse the Components reference for live previews and props.