@aetherstack/blocks
v0.3.0
Published
Aether UI blocks — full page sections and layout blocks for SaaS dashboards
Readme
@aetherstack/blocks
Aether UI — 10 full-section layout blocks for SaaS dashboards and product UIs.
Part of the Aetherstack design system monorepo.
What this is
@aetherstack/blocks ships complete, installable UI sections — auth pages, settings panels, billing flows, team management, notification centers. Each block is self-contained and ready to drop into a Next.js route.
Install
pnpm add @aetherstack/blocks @aetherstack/patterns @aetherstack/ui @aetherstack/utilsPeer dependencies:
pnpm add react react-dom tailwindcssUsage
import { AccountSettings } from "@aetherstack/blocks"
export default function SettingsPage() {
return (
<AccountSettings
defaultValues={{ name: "Jane Doe", email: "[email protected]" }}
onSave={async (data) => {
await updateProfile(data)
}}
/>
)
}Blocks (10)
Dashboard: DashboardShell, EmptyDashboard
Auth: LoginBlock, SignupBlock
Settings: AccountSettings, TeamSettings
Billing: BillingOverview
Onboarding: OnboardingChecklist
Notifications: NotificationCenter
Marketing: PricingSection
CLI-first workflow
npx aether-ui add dashboard-shell
npx aether-ui add account-settings
npx aether-ui add pricing-sectionSee aether-ui.dev/blocks.
License
MIT — see LICENSE
